UNPKG

vue-pug-plugin

Version:

Pug to HTML plugin for Vue with proper native pug syntax support

15 lines (14 loc) 267 B
declare module 'vue-pug-plugin' { interface AST { nodes: any[] [key: string]: any } interface Options { [key: string]: any } function preCodeGen(ast: AST, options: Options): AST const plugin = { preCodeGen: typeof preCodeGen } export default plugin }