webcrack
Version:
Deobfuscate, unminify and unpack bundled javascript
11 lines • 378 B
TypeScript
import type { NodePath } from '@babel/traverse';
import type * as t from '@babel/types';
export interface StringArray {
path: NodePath<t.FunctionDeclaration>;
references: NodePath[];
name: string;
originalName: string;
length: number;
}
export declare function findStringArray(ast: t.Node): StringArray | undefined;
//# sourceMappingURL=string-array.d.ts.map