/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { IExecuteContext, TaskConfig } from "@workglow/task-graph"; import { CreateWorkflow, Task } from "@workglow/task-graph"; import type { FromSchema } from "@workglow/util/schema"; declare const inputSchema: { readonly type: "object"; readonly properties: { readonly a: { readonly type: "number"; readonly title: "A"; readonly description: "First number"; }; readonly b: { readonly type: "number"; readonly title: "B"; readonly description: "Second number"; }; }; readonly required: readonly ["a", "b"]; readonly additionalProperties: false; }; declare const outputSchema: { readonly type: "object"; readonly properties: { readonly result: { readonly type: "number"; readonly title: "Result"; readonly description: "Product of a and b"; }; }; readonly required: readonly ["result"]; readonly additionalProperties: false; }; export type ScalarMultiplyTaskInput = FromSchema; export type ScalarMultiplyTaskOutput = FromSchema; export declare class ScalarMultiplyTask extends Task { static readonly type = "ScalarMultiplyTask"; static readonly category = "Math"; static title: string; static description: string; static inputSchema(): { readonly type: "object"; readonly properties: { readonly a: { readonly type: "number"; readonly title: "A"; readonly description: "First number"; }; readonly b: { readonly type: "number"; readonly title: "B"; readonly description: "Second number"; }; }; readonly required: readonly ["a", "b"]; readonly additionalProperties: false; }; static outputSchema(): { readonly type: "object"; readonly properties: { readonly result: { readonly type: "number"; readonly title: "Result"; readonly description: "Product of a and b"; }; }; readonly required: readonly ["result"]; readonly additionalProperties: false; }; execute(input: Input, _context: IExecuteContext): Promise; } declare module "@workglow/task-graph" { interface Workflow { scalarMultiply: CreateWorkflow; } } export {};