cvat-sdk
Version:
CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.
12 lines (11 loc) • 336 B
TypeScript
import type { FunctionCallParams } from './function-call-params';
export interface FunctionCall {
'id': string;
'function': FunctionCallParams;
'status': string | null;
'progress'?: number | null;
'enqueued': string | null;
'started': string | null;
'ended': string | null;
'exc_info'?: string | null;
}