UNPKG

@promptbook/browser

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

13 lines (12 loc) 635 B
import type { FilesystemTools } from '../../../execution/FilesystemTools'; import type { PrepareAndScrapeOptions } from '../../../prepare/PrepareAndScrapeOptions'; /** * Provides filesystem access (for example for Node.js-based scrapers) * Creates a standardized filesystem interface that scrapers can use for file operations. * * @public exported from `@promptbook/node` */ export declare function $provideFilesystemForNode(options?: Pick<PrepareAndScrapeOptions, 'isVerbose'>): FilesystemTools; /** * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment */