7 lines
213 B
TypeScript
7 lines
213 B
TypeScript
![]() |
import { FormattingState } from '../state';
|
||
|
/** converts scss/css to sass. */
|
||
|
export declare function convertScssOrCss(text: string, STATE: FormattingState): {
|
||
|
lastSelector: string;
|
||
|
text: string;
|
||
|
};
|