UNPKG

javascript-obfuscator

Version:
10 lines (9 loc) 330 B
import { ISourceCode } from '../interfaces/source-code/ISourceCode'; export declare class SourceCode implements ISourceCode { private readonly sourceCode; private readonly sourceMap; constructor(sourceCode: string, sourceMap: string); getSourceCode(): string; getSourceMap(): string; toString(): string; }