UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

7 lines (6 loc) 173 B
import { type Knex } from 'knex'; export interface FieldCount { max: number; total: number; } export declare const getFieldCount: (db: Knex) => Promise<FieldCount>;