TableNode: Readonly<{
    create(table): kysely.TableNode;
    createWithSchema(schema, table): kysely.TableNode;
    is(node): node is kysely.TableNode;
}>

Type declaration

  • create:function
    • Parameters

      • table: string

      Returns kysely.TableNode

  • createWithSchema:function
    • Parameters

      • schema: string
      • table: string

      Returns kysely.TableNode

  • is:function