@godspeedsystems/core
Version:
> 4th Generation Declarative Microservice Framework
61 lines (60 loc) • 1.46 kB
TypeScript
declare const taskSchema: {
$id: string;
type: string;
$ref: string;
definitions: {
task: {
type: string;
properties: {
id: {
type: string;
};
fn: {
type: string;
};
args: {
anyOf: {
type: string;
}[];
};
description: {
type: string;
};
tasks: {
type: string;
items: {
$ref: string;
}[];
};
};
};
};
};
export const $id: string;
export const type: string;
export namespace properties {
namespace id {
const type_1: string;
export { type_1 as type };
}
namespace summary {
const type_2: string;
export { type_2 as type };
}
namespace description {
const type_3: string;
export { type_3 as type };
}
namespace tasks {
const type_4: string;
export { type_4 as type };
export const items: {
$ref: string;
}[];
}
}
export const additionalProperties: boolean;
export namespace definitions {
export { taskSchema as task };
}
export {};