mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-12-09 14:40:27 +08:00
refactor: use setup refactor
This commit is contained in:
13
types/global.d.ts
vendored
13
types/global.d.ts
vendored
@@ -20,13 +20,14 @@ declare global {
|
||||
// Global vue app instance
|
||||
__APP__: App<Element>;
|
||||
webkitCancelAnimationFrame: (handle: number) => void;
|
||||
mozCancelAnimationFrame: (handle: number) => void;
|
||||
oCancelAnimationFrame: (handle: number) => void;
|
||||
msCancelAnimationFrame: (handle: number) => void;
|
||||
|
||||
webkitRequestAnimationFrame: (callback: FrameRequestCallback) => number;
|
||||
mozCancelAnimationFrame: (id?: string) => any;
|
||||
oCancelAnimationFrame: (id?: string) => any;
|
||||
msCancelAnimationFrame: (id?: string) => any;
|
||||
mozRequestAnimationFrame: (id?: string) => any;
|
||||
oRequestAnimationFrame: (id?: string) => any;
|
||||
msRequestAnimationFrame: (id?: string) => any;
|
||||
mozRequestAnimationFrame: (callback: FrameRequestCallback) => number;
|
||||
oRequestAnimationFrame: (callback: FrameRequestCallback) => number;
|
||||
msRequestAnimationFrame: (callback: FrameRequestCallback) => number;
|
||||
}
|
||||
|
||||
// vue
|
||||
|
||||
Reference in New Issue
Block a user