UNPKG

@promptbook/remote-server

Version:

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

13 lines (12 loc) 559 B
import type { WithTake } from './interfaces/ITakeChain'; import type { Takeable } from './interfaces/Takeable'; /** * A function that takes an initial value and returns a proxy object with chainable methods. * * @param {*} initialValue - The initial value. * @returns {Proxy<WithTake<TValue>>} - A proxy object with a `take` method. * @deprecated [🤡] Use some better functional library instead of `TakeChain` * * @private util of `@promptbook/color` */ export declare function take<TValue extends Takeable>(initialValue: TValue): WithTake<TValue>;