1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/@vue/component-compiler-utils/dist/templateCompilerModules/utils.d.ts

10 lines
187 B
TypeScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
export interface Attr {
name: string;
value: string;
}
export interface ASTNode {
tag: string;
attrs: Attr[];
}
export declare function urlToRequire(url: string): string;