UNPKG

html-attribute-sorter

Version:

An html attribute sorter

6 lines (5 loc) 181 B
export declare type Strategy = "alphabetical" | "code-guide" | "idiomatic" | "vuejs" | "custom"; export interface ISortOption { order: Strategy; customRegexes?: string[]; }