/** * @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 start: { readonly type: "integer"; readonly title: "Start"; readonly description: "Start index (inclusive, supports negative indexing)"; }; readonly end: { readonly type: "integer"; readonly title: "End"; readonly description: "End index (exclusive, supports negative indexing)"; }; }; readonly required: readonly ["text", "start"]; readonly additionalProperties: false; }; declare const outputSchema: { readonly type: "object"; readonly properties: { readonly text: { readonly type: "string"; readonly title: "Text"; readonly description: "Extracted substring"; }; }; readonly required: readonly ["text"]; readonly additionalProperties: false; }; export type StringSliceTaskInput = FromSchema; export type StringSliceTaskOutput = FromSchema; export declare class StringSliceTask extends Task { static readonly type = "StringSliceTask"; 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 start: { readonly type: "integer"; readonly title: "Start"; readonly description: "Start index (inclusive, supports negative indexing)"; }; readonly end: { readonly type: "integer"; readonly title: "End"; readonly description: "End index (exclusive, supports negative indexing)"; }; }; readonly required: readonly ["text", "start"]; readonly additionalProperties: false; }; static outputSchema(): { readonly type: "object"; readonly properties: { readonly text: { readonly type: "string"; readonly title: "Text"; readonly description: "Extracted substring"; }; }; 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 { stringSlice: CreateWorkflow; } } export {};