/** * @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 to search in"; }; readonly search: { readonly type: "string"; readonly title: "Search"; readonly description: "Substring to search for"; }; }; readonly required: readonly ["text", "search"]; readonly additionalProperties: false; }; declare const outputSchema: { readonly type: "object"; readonly properties: { readonly included: { readonly type: "boolean"; readonly title: "Included"; readonly description: "Whether the string contains the search substring"; }; }; readonly required: readonly ["included"]; readonly additionalProperties: false; }; export type StringIncludesTaskInput = FromSchema; export type StringIncludesTaskOutput = FromSchema; export declare class StringIncludesTask extends Task { static readonly type = "StringIncludesTask"; 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 to search in"; }; readonly search: { readonly type: "string"; readonly title: "Search"; readonly description: "Substring to search for"; }; }; readonly required: readonly ["text", "search"]; readonly additionalProperties: false; }; static outputSchema(): { readonly type: "object"; readonly properties: { readonly included: { readonly type: "boolean"; readonly title: "Included"; readonly description: "Whether the string contains the search substring"; }; }; readonly required: readonly ["included"]; readonly additionalProperties: false; }; execute(input: Input, _context: IExecuteContext): Promise; executePreview(input: Input, _context: IExecutePreviewContext): Promise; } declare module "@workglow/task-graph" { interface Workflow { stringIncludes: CreateWorkflow; } } export {};