| 123456789101112131415161718192021 |
- /// <reference types="vite/client" />
- interface FrameRequestCallback {
- (time: number): void;
- }
- declare interface Window {
- webkitCancelAnimationFrame(handle: number): void;
- webkitRequestAnimationFrame(callback: FrameRequestCallback): number;
- }
- declare module '*.vue' {
- import type { DefineComponent } from 'vue';
- const component: DefineComponent<{}, {}, any>;
- export default component;
- }
- declare module '@tarojs/components/dist-h5/vue3/components/scroll-view.js';
- declare module '@tarojs/components/mini/index.js';
- declare module '*.md' {
- import type { ComponentOptions } from 'vue';
- const Component: ComponentOptions;
- export default Component;
- }
|