summaryrefslogtreecommitdiff
path: root/src/node_modules/javascript-obfuscator/src/interfaces/source-code/IObfuscatedCode.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_modules/javascript-obfuscator/src/interfaces/source-code/IObfuscatedCode.ts')
-rw-r--r--src/node_modules/javascript-obfuscator/src/interfaces/source-code/IObfuscatedCode.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/node_modules/javascript-obfuscator/src/interfaces/source-code/IObfuscatedCode.ts b/src/node_modules/javascript-obfuscator/src/interfaces/source-code/IObfuscatedCode.ts
new file mode 100644
index 0000000..ac395e2
--- /dev/null
+++ b/src/node_modules/javascript-obfuscator/src/interfaces/source-code/IObfuscatedCode.ts
@@ -0,0 +1,13 @@
+import { IInitializable } from '../IInitializable';
+
+export interface IObfuscatedCode extends IInitializable <[string, string]> {
+ /**
+ * @return {string}
+ */
+ getObfuscatedCode (): string;
+
+ /**
+ * @return {string}
+ */
+ getSourceMap (): string;
+}