haiku-atelier-2024/stylelint.d.ts
2024-08-13 15:29:18 +02:00

8 lines
278 B
TypeScript

/**
* Définition d'un groupe de Propriétés _CSS_ du plugin `stylelint-config-clean-order` pour _Stylelint_.
*/
type StylelintConfigCleanOrderPropertyGroup = {
emptyLineBefore: "never" | "threshold";
noEmptyLineBetween: boolean;
properties: string | Array<string>;
};