UNPKG

@directus/api

Version:

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

9 lines (8 loc) 301 B
import type { SchemaOverview, Snapshot, SnapshotDiff } from '@directus/types'; import type { Knex } from 'knex'; export declare function applySnapshot(snapshot: Snapshot, options?: { database?: Knex; schema?: SchemaOverview; current?: Snapshot; diff?: SnapshotDiff; }): Promise<void>;