Interface InstructionColumnTemplateData

interface InstructionColumnTemplateData {
    cellDisposable: IDisposable[];
    currentElement: {
        element?: DisassembledInstructionEntry;
    };
    disposables: IDisposable[];
    instruction: HTMLElement;
    sourcecode: HTMLElement;
}

Properties

cellDisposable: IDisposable[]
currentElement: {
    element?: DisassembledInstructionEntry;
}

Type declaration

disposables: IDisposable[]
instruction: HTMLElement
sourcecode: HTMLElement