UNPKG

jorel

Version:

A unified wrapper for working with LLMs from multiple providers, including streams, images, documents & automatic tool use.

4 lines (3 loc) 274 B
export declare const omit: <T extends object, K extends keyof T>(obj: T, keys: readonly K[]) => Omit<T, K>; export declare const maskAll: <T extends Record<string, any>>(obj: T) => Record<keyof T, string>; export declare function shallowFilterUndefined<T = any>(arg: T): T;