Browse Source

Merge pull request #304 from tyronedougherty/master

Correct the ObfuscationResult type
Timofey Kachalov 6 years ago
parent
commit
5afa7fd4bf
4 changed files with 2 additions and 2 deletions
  1. 0 0
      dist/index.browser.js
  2. 0 0
      dist/index.cli.js
  3. 0 0
      dist/index.js
  4. 2 2
      index.d.ts

File diff suppressed because it is too large
+ 0 - 0
dist/index.browser.js


File diff suppressed because it is too large
+ 0 - 0
dist/index.cli.js


File diff suppressed because it is too large
+ 0 - 0
dist/index.js


+ 2 - 2
index.d.ts

@@ -1,9 +1,9 @@
 import { TInputOptions } from './src/types/options/TInputOptions';
 
-import { IObfuscationResult } from './src/interfaces/IObfuscationResult';
+import { IObfuscatedCode } from './src/interfaces/source-code/IObfuscatedCode';
 
 export type ObfuscatorOptions = TInputOptions;
 
-export interface ObfuscationResult extends IObfuscationResult {}
+export interface ObfuscationResult extends IObfuscatedCode {}
 
 export function obfuscate (sourceCode: string, inputOptions?: ObfuscatorOptions): ObfuscationResult;

Some files were not shown because too many files changed in this diff