tornado-core/dist/schemas/jobs.d.ts
2024-04-29 15:55:15 +00:00

41 lines
763 B
TypeScript

export type jobsSchema = {
type: string;
properties: {
error: {
type: string;
};
id: {
type: string;
};
type: {
type: string;
};
status: {
type: string;
};
contract: {
type: string;
};
proof: {
type: string;
};
args: {
type: string;
items: {
type: string;
};
};
txHash: {
type: string;
};
confirmations: {
type: string;
};
failedReason: {
type: string;
};
};
required: string[];
};
export declare const jobsSchema: jobsSchema;