javascript-obfuscator
Version:
JavaScript obfuscator
19 lines (15 loc) • 454 B
text/typescript
import { TNodeWithLexicalScopeStatements } from '../../../types/node/TNodeWithLexicalScopeStatements';
export interface IStringArrayScopeCallsWrapperLexicalScopeData {
/**
* @type {TNodeWithLexicalScopeStatements | null}
*/
parentLexicalScopeBodyNode: TNodeWithLexicalScopeStatements | null;
/**
* @type {number}
*/
resultShiftedIndex: number;
/**
* @type {number}
*/
scopeShiftedIndex: number;
}