UNPKG

brandeur-plugin-sort-property

Version:

Brandeur plugin that sorts properties according a priority map

12 lines (9 loc) 270 B
declare module 'brandeur-plugin-sort-property' { import { Style } from 'brandeur' type PropertyPriority = { [Property in keyof Style]: number } export default function enforceLonghand( propertyPriority?: PropertyPriority ): (style: Style) => Style }