8 lines
285 B
TypeScript
Executable file
8 lines
285 B
TypeScript
Executable file
/**
|
|
* Définition d'un groupe de Propriétés _CSS_ du plugin `stylelint-config-clean-order` pour _Stylelint_.
|
|
*/
|
|
export type stylelintconfigcleanorderpropertygroup = {
|
|
emptyLineBefore: "never" | "threshold";
|
|
noEmptyLineBetween: boolean;
|
|
properties: string | array<string>;
|
|
};
|