Initial commit - Event Planner application
This commit is contained in:
43
node_modules/kysely/dist/esm/query-builder/order-by-item-builder.d.ts
generated
vendored
Normal file
43
node_modules/kysely/dist/esm/query-builder/order-by-item-builder.d.ts
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
import type { OperationNodeSource } from '../operation-node/operation-node-source.js';
|
||||
import { OrderByItemNode } from '../operation-node/order-by-item-node.js';
|
||||
import type { Collation } from '../parser/collate-parser.js';
|
||||
export declare class OrderByItemBuilder implements OperationNodeSource {
|
||||
#private;
|
||||
constructor(props: OrderByItemBuilderProps);
|
||||
/**
|
||||
* Adds `desc` to the `order by` item.
|
||||
*
|
||||
* See {@link asc} for the opposite.
|
||||
*/
|
||||
desc(): OrderByItemBuilder;
|
||||
/**
|
||||
* Adds `asc` to the `order by` item.
|
||||
*
|
||||
* See {@link desc} for the opposite.
|
||||
*/
|
||||
asc(): OrderByItemBuilder;
|
||||
/**
|
||||
* Adds `nulls last` to the `order by` item.
|
||||
*
|
||||
* This is only supported by some dialects like PostgreSQL and SQLite.
|
||||
*
|
||||
* See {@link nullsFirst} for the opposite.
|
||||
*/
|
||||
nullsLast(): OrderByItemBuilder;
|
||||
/**
|
||||
* Adds `nulls first` to the `order by` item.
|
||||
*
|
||||
* This is only supported by some dialects like PostgreSQL and SQLite.
|
||||
*
|
||||
* See {@link nullsLast} for the opposite.
|
||||
*/
|
||||
nullsFirst(): OrderByItemBuilder;
|
||||
/**
|
||||
* Adds `collate <collationName>` to the `order by` item.
|
||||
*/
|
||||
collate(collation: Collation): OrderByItemBuilder;
|
||||
toOperationNode(): OrderByItemNode;
|
||||
}
|
||||
export interface OrderByItemBuilderProps {
|
||||
readonly node: OrderByItemNode;
|
||||
}
|
||||
Reference in New Issue
Block a user