teableio/teable

View on GitHub
apps/nestjs-backend/src/db-provider/sort-query/sort-query.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { Knex } from 'knex';

export interface ISortQueryInterface {
  appendSortBuilder(): Knex.QueryBuilder;
  getRawSortSQLText(): string;
}