UNPKG

688 BTypeScriptView Raw
1import { SassTextLine } from './sassTextLine';
2export interface LogFormatInfo {
3 title: string;
4 debug: boolean;
5 lineNumber: number;
6 oldLineText: string;
7 newLineText?: string;
8 offset?: number;
9 originalOffset?: number;
10 replaceSpaceOrTabs?: boolean;
11 nextLine?: SassTextLine;
12}
13export interface LogConvertData {
14 type: string;
15 text: string;
16}
17export declare function LogDebugResult(result: string): void;
18export declare function ResetDebugLog(): void;
19export declare function SetDebugLOCAL_CONTEXT(data: any): void;
20export declare function SetConvertData(data: LogConvertData): void;
21export declare function PushDebugInfo(info: LogFormatInfo): void;