123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- import type { ComponentPublicInstance, FunctionalComponent, VNodeChild, PropType as VuePropType } from 'vue';
- import type { JSX } from 'vue/jsx-runtime';
- export {};
- declare global {
- export interface Window {
- /** NProgress instance */
- NProgress?: import('nprogress').NProgress;
- /** Loading bar instance */
- $loadingBar?: import('naive-ui').LoadingBarProviderInst;
- /** Dialog instance */
- $dialog?: import('naive-ui').DialogProviderInst;
- /** Message instance */
- $message?: import('naive-ui').MessageProviderInst;
- /** Notification instance */
- $notification?: import('naive-ui').NotificationProviderInst;
- }
- /** Build time of the project */
- export const BUILD_TIME: string;
- type PropType<T> = VuePropType<T>;
- type VueNode = VNodeChild | JSX.Element;
- export type Writable<T> = {
- -readonly [P in keyof T]: T[P];
- };
- interface InResult<T = any> {
- code: number;
- message: string;
- result: T;
- }
- type Nullable<T> = T | null;
- type Recordable<T = any> = Record<string, T>;
- type ReadonlyRecordable<T = any> = {
- readonly [key: string]: T;
- };
- type Indexable<T = any> = {
- [key: string]: T;
- };
- type DeepPartial<T> = {
- [P in keyof T]?: DeepPartial<T[P]>;
- };
- type TimeoutHandle = ReturnType<typeof setTimeout>;
- type IntervalHandle = ReturnType<typeof setInterval>;
- interface ChangeEvent extends Event {
- target: HTMLInputElement;
- }
- interface WheelEvent {
- path?: EventTarget[];
- }
- }
- declare module 'vue' {
- export type JSXComponent<Props = any> = { new (): ComponentPublicInstance<Props> } | FunctionalComponent<Props>;
- }
|