UNPKG

@promptbook/remote-server

Version:

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

13 lines (12 loc) 581 B
import { $Register } from '../../../utils/misc/$Register'; import type { ScraperAndConverterMetadata } from './ScraperAndConverterMetadata'; /** * Global registry for storing metadata about all available scrapers and converters. * * Note: `$` is used to indicate that this interacts with the global scope. * * @singleton Only one instance of each register is created per build, but there can be more in different contexts (e.g., tests). * * @public exported from `@promptbook/core` */ export declare const $scrapersMetadataRegister: $Register<ScraperAndConverterMetadata>;