/**
* A representation of a chunk of a script, which includes an opcode. For push operations, the associated data to push onto the stack is also included.
*/exportdefaultinterfaceScriptChunk {
op: number;
data?: number[];
}
//# sourceMappingURL=ScriptChunk.d.ts.map