tornado-core/dist/schemas/jobs.d.ts

41 lines
763 B
TypeScript
Raw Normal View History

2024-04-29 18:55:15 +03:00
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;