mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 02:51:52 +02:00
15 lines
488 B
TypeScript
15 lines
488 B
TypeScript
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>;
|
|
};
|