flora-exception
Version:
An exception system for FQL.
8 lines (7 loc) • 334 B
TypeScript
import { values } from "faunadb";
/**
* Document type predicate. Chcecks that any object is a document and has matching data.
* @param Predicate is the predicate used to check the data.
* @returns
*/
export declare const $Document: <T>(Predicate?: ((obj: any) => obj is T) | undefined) => (obj: any) => obj is values.Document<T>;