fauna
Version:
A driver to query Fauna databases in browsers, Node.js, and other Javascript runtimes
11 lines (10 loc) • 332 B
TypeScript
/**
* Readonly object representing the paths of the Fauna API to be used
* with HTTP clients.
*/
export declare const FaunaAPIPaths: {
readonly QUERY: "/query/1";
readonly STREAM: "/stream/1";
readonly EVENT_FEED: "/feed/1";
};
export type SupportedFaunaAPIPaths = (typeof FaunaAPIPaths)[keyof typeof FaunaAPIPaths];