vant/types/component.d.ts
2020-09-01 15:54:09 +08:00

8 lines
119 B
TypeScript

import { App } from 'vue';
export class VanComponent {
static name: string;
static install: (app: App) => any;
}