Interface ApiOptions

interface ApiOptions {
    casing?: "camel" | "snake";
    errorLogger?: (p: any) => string | void;
    fetchMode?: FetchMode;
    logLevel?: "off" | "info" | "debug";
}

Properties

casing?: "camel" | "snake"
errorLogger?: (p: any) => string | void
fetchMode?: FetchMode
logLevel?: "off" | "info" | "debug"