UNPKG

@directus/api

Version:

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

7 lines (6 loc) 184 B
import type { Knex } from 'knex'; export interface ActiveUser { id: string; role: string | null; } export declare function fetchActiveUsers(knex: Knex): Promise<ActiveUser[]>;