Skip to content

Commit

Permalink
refactor: orderDirection (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaddollxz authored Aug 15, 2024
1 parent 03350e7 commit 7552216
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@byzanteam/taihaku-schemas",
"version": "0.5.1",
"version": "0.5.2",
"exports": "./types/mod.ts",
"compilerOptions": {
"strict": true,
Expand Down
2 changes: 1 addition & 1 deletion types/persistence_schema/sorting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export enum OrderDirection {

export interface Order {
field: string
direction: OrderDirection
direction: `${OrderDirection}`
}

export type Sorters = Array<Order>

0 comments on commit 7552216

Please sign in to comment.