astro-ghostcms/.pnpm-store/v3/files/fc/6d58da6c196dda0c1e431f0a560...

19 lines
589 B
Plaintext

export interface SassFormatterConfig {
/**Enable debug messages */
debug: boolean;
/**delete rows that are empty. */
deleteEmptyRows: boolean;
/**@deprecated*/
deleteWhitespace: boolean;
/**Convert css or scss to sass */
convert: boolean;
/**set the space after the colon of a property to one.*/
setPropertySpace: boolean;
tabSize: number;
/**insert spaces or tabs. */
insertSpaces: boolean;
/**Defaults to LF*/
lineEnding: 'LF' | 'CRLF';
}
export declare const defaultSassFormatterConfig: SassFormatterConfig;