/** * @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 text: { readonly type: "string"; readonly title: "Text"; readonly description: "Input string"; }; }; readonly required: readonly ["text"]; readonly additionalProperties: false; }; declare const outputSchema: { readonly type: "object"; readonly properties: { readonly text: { readonly type: "string"; readonly title: "Text"; readonly description: "Lowercased string"; }; }; readonly required: readonly ["text"]; readonly additionalProperties: false; }; export type StringLowerCaseTaskInput = FromSchema; export type StringLowerCaseTaskOutput = FromSchema; export declare class StringLowerCaseTask extends Task { static readonly type = "StringLowerCaseTask"; static readonly category = "String"; static title: string; static description: string; static inputSchema(): { readonly type: "object"; readonly properties: { readonly text: { readonly type: "string"; readonly title: "Text"; readonly description: "Input string"; }; }; readonly required: readonly ["text"]; readonly additionalProperties: false; }; static outputSchema(): { readonly type: "object"; readonly properties: { readonly text: { readonly type: "string"; readonly title: "Text"; readonly description: "Lowercased string"; }; }; 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 { stringLowerCase: CreateWorkflow; } } export {};