Type Alias Table<R, S, E>

Table: {
    schema: S;
    extend<E2 extends object>(): Table<R, S, E & E2>;
    new (data: AnyOrParsed<R>): R & RowImpl<R>;
} & WithFromItem<R & E, {}>

Type Parameters