kjelsrud.dev/node_modules/sass-formatter/dist/formatters/format.convert.d.ts

7 lines
213 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
import { FormattingState } from '../state';
/** converts scss/css to sass. */
export declare function convertScssOrCss(text: string, STATE: FormattingState): {
lastSelector: string;
text: string;
};