fediversity.eu/node_modules/prettier-plugin-go-template/lib/index.d.ts
2024-03-26 16:28:28 +01:00

16 lines
480 B
TypeScript

import { Parser, Printer, SupportLanguage } from "prettier";
import { GoNode } from "./parse";
export 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>;
};