UNPKG

aptos

Version:
18 lines (14 loc) 368 B
/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { DeletedTableData } from './DeletedTableData'; import type { HexEncodedBytes } from './HexEncodedBytes'; /** * Delete a table item */ export type DeleteTableItem = { state_key_hash: string; handle: HexEncodedBytes; key: HexEncodedBytes; data?: DeletedTableData; };