10 lines
286 B
TypeScript
Raw Permalink Normal View History

2024-11-05 10:14:41 +08:00
import type { InjectionKey } from 'vue'
import type { NoticeBarProps } from '../components/notice-bar'
export type NoticeBarContext = NoticeBarProps & {
play: boolean
click: (index: number) => void
}
export const noticeBarKey: InjectionKey<NoticeBarContext> = Symbol('noticeBar')