IObfuscationResult.ts 466 B

12345678910111213141516171819
  1. import { TIdentifierNamesCache } from '../../types/TIdentifierNamesCache';
  2. import { IInitializable } from '../IInitializable';
  3. export interface IObfuscationResult extends IInitializable <[string, string]> {
  4. /**
  5. * @returns {TIdentifierNamesCache}
  6. */
  7. getIdentifierNamesCache (): TIdentifierNamesCache;
  8. /**
  9. * @return {string}
  10. */
  11. getObfuscatedCode (): string;
  12. /**
  13. * @return {string}
  14. */
  15. getSourceMap (): string;
  16. }