UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

14 lines (13 loc) 555 B
import type { string_pipeline_url } from '../../../types/string_pipeline_url'; import type { really_unknown } from '../../organization/really_unknown'; /** * Tests if given string is valid pipeline URL URL. * * Note: There are few similar functions: * - `isValidUrl` which tests any URL * - `isValidAgentUrl` which tests just agent URL * - `isValidPipelineUrl` *(this one)* which tests just pipeline URL * * @public exported from `@promptbook/utils` */ export declare function isValidPipelineUrl(url: really_unknown): url is string_pipeline_url;