UNPKG

prettier-plugin-marko

Version:

A prettier plugin for parsing and printing Marko files

6 lines (5 loc) 420 B
import type { Options } from "prettier"; import { type Node } from "../parser"; export declare function getParserFromExt(ext: string): false | "babel-ts" | "babel" | "css" | "less" | "scss"; export declare function hasTagParser(tag: Node.Tag): boolean; export declare function getTagParser(tag: Node.Tag, opts: Options): false | import("prettier").LiteralUnion<import("prettier").BuiltInParserName, string> | undefined;