mirror of
https://github.com/lanyeeee/bilibili-video-downloader.git
synced 2026-09-05 15:38:52 +08:00
7 lines
300 B
TypeScript
7 lines
300 B
TypeScript
import type { InjectionKey, Ref } from 'vue'
|
|
import SearchPane from './panes/SearchPane/SearchPane.vue'
|
|
|
|
export const navDownloadButtonRefKey = Symbol() as InjectionKey<Ref<HTMLDivElement | null>>
|
|
|
|
export const searchPaneRefKey = Symbol() as InjectionKey<Ref<InstanceType<typeof SearchPane> | null>>
|