9 lines
281 B
TypeScript
9 lines
281 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>;
|
|
};
|