EASYAIuniappNewUI/node_modules/@tuniao/tnui-vue3-uniapp/tokens/notice-bar.ts
2025-02-08 18:50:38 +08:00

10 lines
286 B
TypeScript

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')