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

export interface Attr {
name: string;
value: string;
}
export interface ASTNode {
tag: string;
attrs: Attr[];
}
export declare function urlToRequire(url: string): string;