/* eslint-disable */ // @ts-nocheck // This file was automatically generated by @icp-sdk/bindgen@0.4.0. // You should NOT make any changes in this file as it will be overwritten. // Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified. import type { ActorMethod } from '@icp-sdk/core/agent'; import type { IDL } from '@icp-sdk/core/candid'; import type { Principal } from '@icp-sdk/core/principal'; export interface BenchResult { 'rts_stable_memory_size' : bigint, 'stable_memory_size' : bigint, 'instructions' : bigint, 'rts_memory_size' : bigint, 'rts_total_allocation' : bigint, 'rts_collector_instructions' : bigint, 'rts_mutator_instructions' : bigint, 'rts_logical_stable_memory_size' : bigint, 'rts_heap_size' : bigint, 'rts_reclaimed' : bigint, } export interface BenchSchema { 'cols' : Array, 'name' : string, 'rows' : Array, 'description' : string, } export interface _anon_class_10_1 { 'getSchema' : ActorMethod<[], BenchSchema>, 'getStats' : ActorMethod<[], BenchResult>, 'init' : ActorMethod<[], BenchSchema>, 'runCellQuery' : ActorMethod<[bigint, bigint], BenchResult>, 'runCellUpdate' : ActorMethod<[bigint, bigint], BenchResult>, 'runCellUpdateAwait' : ActorMethod<[bigint, bigint], BenchResult>, } export interface _SERVICE extends _anon_class_10_1 {} export declare const idlFactory: IDL.InterfaceFactory; export declare const init: (args: { IDL: typeof IDL }) => IDL.Type[];