2022-06-10 10:47:46 +00:00
|
|
|
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')
|
2022-07-05 15:09:20 +00:00
|
|
|
export const SongListSortFieldKey: InjectionKey<Ref<SongListSortField>> = Symbol('SongListSortField')
|
|
|
|
export const SongListSortOrderKey: InjectionKey<Ref<SortOrder>> = Symbol('SongListSortOrder')
|