UNPKG

prettier-plugin-organize-attributes

Version:
15 lines (14 loc) • 419 B
import { Parser } from "prettier"; export declare const parsers: { html: Parser<any>; vue: Parser<any>; angular: Parser<any>; }; export declare const options: { [K in keyof PrettierPluginOrganizeAttributesParserOptions]: any; }; export type PrettierPluginOrganizeAttributesParserOptions = { attributeGroups: string[]; attributeSort: "ASC" | "DESC" | "NONE"; attributeIgnoreCase: boolean; };