UNPKG

flora-exception

Version:

An exception system for FQL.

13 lines (12 loc) 300 B
import { values } from "faunadb"; export interface IndexI extends values.Document { active: boolean; serialized: boolean; name: string; unique: boolean; source: values.Ref; terms: { field: string[]; }[]; } export declare const $Index: (obj: any) => obj is IndexI;