blowfish/node_modules/prettier-plugin-go-template/lib/index.d.ts

16 lines
488 B
TypeScript
Raw Normal View History

2023-01-29 22:30:24 +00:00
import { Parser, Printer, SupportLanguage } from "prettier";
import { GoNode } from "./parse";
export declare type PrettierPluginGoTemplateParserOptions = {
goTemplateBracketSpacing: boolean;
};
export declare const options: {
[K in keyof PrettierPluginGoTemplateParserOptions]: any;
};
export declare const languages: SupportLanguage[];
export declare const parsers: {
"go-template": Parser<GoNode>;
};
export declare const printers: {
"go-template": Printer<GoNode>;
};