Interface for the arguments required to create a XataClient. Includes the client instance and the table name.

interface XataClientArgs<XataClient> {
    client: XataClient;
    table: string;
}

Type Parameters

  • XataClient

Properties

Properties

client: XataClient
table: string

Generated using TypeDoc