mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-19 01:56:38 +08:00
16 lines
334 B
TypeScript
16 lines
334 B
TypeScript
import type {
|
|
LoadingBarProviderInst,
|
|
DialogProviderInst,
|
|
MessageProviderInst,
|
|
NotificationProviderInst
|
|
} from 'naive-ui';
|
|
|
|
declare global {
|
|
interface Window {
|
|
$loadingBar?: LoadingBarProviderInst;
|
|
$dialog?: DialogProviderInst;
|
|
$message?: MessageProviderInst;
|
|
$notification?: NotificationProviderInst;
|
|
}
|
|
}
|