10 lines
418 B
TypeScript
10 lines
418 B
TypeScript
import type { LoadingBarApiInjection } from "naive-ui/es/loading-bar/src/LoadingBarProvider"
|
|
import type { MessageApiInjection } from "naive-ui/es/message/src/MessageProvider"
|
|
import type { NotificationApiInjection } from "naive-ui/es/notification/src/NotificationProvider"
|
|
|
|
export const context: {
|
|
message?: MessageApiInjection
|
|
notification?: NotificationApiInjection
|
|
loadingBar?: LoadingBarApiInjection
|
|
} = {}
|