interface CapTPImportExportTables {
    deleteExport: ((slot: string) => void);
    didDisconnect: (() => void);
    getExport: ((slot: string) => any);
    getImport: ((slot: string) => any);
    hasExport: ((slot: string) => boolean);
    hasImport: ((slot: string) => boolean);
    makeSlotForValue: ((value: any) => string);
    makeValueForSlot: ((slot: string, iface: undefined | string) => any);
    markAsExported: ((slot: string, value: any) => void);
    markAsImported: ((slot: string, value: any) => void);
}

Properties

deleteExport: ((slot: string) => void)
didDisconnect: (() => void)
getExport: ((slot: string) => any)
getImport: ((slot: string) => any)
hasExport: ((slot: string) => boolean)
hasImport: ((slot: string) => boolean)
makeSlotForValue: ((value: any) => string)
makeValueForSlot: ((slot: string, iface: undefined | string) => any)
markAsExported: ((slot: string, value: any) => void)
markAsImported: ((slot: string, value: any) => void)