kjelsrud.dev/node_modules/sass-formatter/dist/index.d.ts

13 lines
501 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
import { SassFormatterConfig } from './config';
export { defaultSassFormatterConfig, SassFormatterConfig } from './config';
export declare class SassFormatter {
static Format(text: string, config?: Partial<SassFormatterConfig>): string;
private static formatLine;
private static handleCommentBlock;
private static handleEmptyLine;
private static isBlockHeader;
private static isProperty;
/** Adds new Line If not first line. */
private static addNewLine;
}