UNPKG

javascript-obfuscator

Version:
7 lines (6 loc) 316 B
import { TDictionary } from '../../types/TDictionary'; import { TStatement } from '../../types/node/TStatement'; export interface ICustomCodeHelperFormatter { formatTemplate<TMapping extends TDictionary>(template: string, mapping: TMapping): string; formatStructure(structure: TStatement[]): TStatement[]; }