UNPKG

@promptbook/remote-client

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

27 lines (26 loc) 700 B
import type { PipelineJson } from '../PipelineJson/PipelineJson'; import type { PipelineInterface } from './PipelineInterface'; /** * @@@ * * @see https://github.com/webgptorg/promptbook/discussions/171 */ export type IsPipelineImplementingInterfaceOptions = { /** * @@@ */ pipeline: PipelineJson; /** * @@@ */ pipelineInterface: PipelineInterface; }; /** * @@@ * * @deprecated https://github.com/webgptorg/promptbook/pull/186 * @see https://github.com/webgptorg/promptbook/discussions/171 * * @public exported from `@promptbook/core` */ export declare function isPipelineImplementingInterface(options: IsPipelineImplementingInterfaceOptions): boolean;