UNPKG

489 BTypeScriptView Raw
1import { SassFormatterConfig } from './config';
2export { SassFormatterConfig, defaultSassFormatterConfig } from './config';
3export declare class SassFormatter {
4 static Format(text: string, config?: Partial<SassFormatterConfig>): string;
5 private static formatLine;
6 private static handleCommentBlock;
7 private static handleEmptyLine;
8 private static isBlockHeader;
9 private static isProperty;
10 /** Adds new Line If not first line. */
11 private static addNewLine;
12}