mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
6 lines
370 B
TypeScript
6 lines
370 B
TypeScript
import { InjectionKey, Ref } from 'vue'
|
|
|
|
export const SongListTypeKey: InjectionKey<SongListType> = Symbol('SongListType')
|
|
export const SongsKey: InjectionKey<Ref<Song[]>> = Symbol('Songs')
|
|
export const SelectedSongsKey: InjectionKey<Ref<Song[]>> = Symbol('SelectedSongs')
|
|
export const SongListConfigKey: InjectionKey<Partial<SongListConfig>> = Symbol('SongListConfig')
|