/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { IExecuteContext, IExecutePreviewContext, 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 additionalProperties: { readonly type: "string"; }; }; declare const outputSchema: { readonly type: "object"; readonly properties: { readonly text: { readonly type: "string"; readonly title: "Text"; readonly description: "Concatenation of all input strings"; }; }; readonly required: readonly ["text"]; readonly additionalProperties: false; }; export type StringConcatTaskInput = FromSchema; export type StringConcatTaskOutput = FromSchema; export declare class StringConcatTask extends Task { static readonly type = "StringConcatTask"; static readonly category = "String"; static title: string; static description: string; static inputSchema(): { readonly type: "object"; readonly properties: {}; readonly additionalProperties: { readonly type: "string"; }; }; static outputSchema(): { readonly type: "object"; readonly properties: { readonly text: { readonly type: "string"; readonly title: "Text"; readonly description: "Concatenation of all input strings"; }; }; readonly required: readonly ["text"]; readonly additionalProperties: false; }; execute(input: Input, _context: IExecuteContext): Promise; executePreview(input: Input, _context: IExecutePreviewContext): Promise; } declare module "@workglow/task-graph" { interface Workflow { stringConcat: CreateWorkflow; } } export {};