Type Alias Table<TableType>
Table: {
add: (entry: TableType) => Promise<ProcessedTableEntry<TableType>>;
all: <FetchedColumns extends TableEntryKeys<TableEntry>>(
...columns: FetchedColumns[],
) => Promise<RestrictedTableEntry<TableType, FetchedColumns>[]>;
columns: () => Promise<string[]>;
create: (column: string, type: DataType) => Promise<void>;
delete: (column: string, value: unknown) => Promise<void>;
drop: (column: string) => Promise<void>;
get: <FetchedColumns extends TableEntryKeys<TableEntry>>(
columns: FetchedColumns[],
filter?: FilterFunction<RestrictedTableEntry<TableType, FetchedColumns>>,
) => Promise<RestrictedTableEntry<TableType, FetchedColumns>[]>;
has: (column: string) => Promise<boolean>;
toString: () => Promise<string>;
update: (
column: string,
equals: Primative<SQLType>,
values: Partial<TableType>,
) => Promise<TableType[]>;
}
add: (entry: TableType) => Promise<ProcessedTableEntry<TableType>>;
all: <FetchedColumns extends TableEntryKeys<TableEntry>>(
...columns: FetchedColumns[],
) => Promise<RestrictedTableEntry<TableType, FetchedColumns>[]>;
columns: () => Promise<string[]>;
create: (column: string, type: DataType) => Promise<void>;
delete: (column: string, value: unknown) => Promise<void>;
drop: (column: string) => Promise<void>;
get: <FetchedColumns extends TableEntryKeys<TableEntry>>(
columns: FetchedColumns[],
filter?: FilterFunction<RestrictedTableEntry<TableType, FetchedColumns>>,
) => Promise<RestrictedTableEntry<TableType, FetchedColumns>[]>;
has: (column: string) => Promise<boolean>;
toString: () => Promise<string>;
update: (
column: string,
equals: Primative<SQLType>,
values: Partial<TableType>,
) => Promise<TableType[]>;
}
Type Parameters
- TableType extends TableEntry
Type declaration
Readonly
add: (entry: TableType) => Promise<ProcessedTableEntry<TableType>>Readonly
all: <FetchedColumns extends TableEntryKeys<TableEntry>>(
...columns: FetchedColumns[],
) => Promise<RestrictedTableEntry<TableType, FetchedColumns>[]>Gets all entries in the table.
Readonly
columns: () => Promise<string[]>Gets a list of all columns in the table.
Readonly
create: (column: string, type: DataType) => Promise<void>Creates a new column on the table.
Readonly
delete: (column: string, value: unknown) => Promise<void>Deletes all entries from the table where a key equals a value.
Readonly
drop: (column: string) => Promise<void>Drops a column from the table.
Readonly
get: <FetchedColumns extends TableEntryKeys<TableEntry>>(
columns: FetchedColumns[],
filter?: FilterFunction<RestrictedTableEntry<TableType, FetchedColumns>>,
) => Promise<RestrictedTableEntry<TableType, FetchedColumns>[]>Gets entries from the table.
Readonly
has: (column: string) => Promise<boolean>Checks if a column exists.
Readonly
toString: () => Promise<string>Gets a string representation of the table.
Readonly
update: (
column: string,
equals: Primative<SQLType>,
values: Partial<TableType>,
) => Promise<TableType[]>Updates an entry in the table.
Adds a new entry to the table.