UNPKG

javascript-obfuscator

Version:
10 lines (9 loc) 399 B
import { TIdentifierNamesCache } from '../../types/TIdentifierNamesCache'; import { IInitializable } from '../IInitializable'; import { IOptions } from '../options/IOptions'; export interface IObfuscationResult extends IInitializable<[string, string]> { getIdentifierNamesCache(): TIdentifierNamesCache; getObfuscatedCode(): string; getOptions(): IOptions; getSourceMap(): string; }