@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
22 lines (21 loc) • 718 B
TypeScript
import type { Driver } from '@directus/types';
export declare const databaseQuestions: {
sqlite3: (({ filepath }: {
filepath: string;
}) => Record<string, string>)[];
mysql2: (({ client }: {
client: Exclude<Driver, "sqlite3">;
}) => Record<string, any>)[];
pg: (({ client }: {
client: Exclude<Driver, "sqlite3">;
}) => Record<string, any>)[];
cockroachdb: (({ client }: {
client: Exclude<Driver, "sqlite3">;
}) => Record<string, any>)[];
oracledb: (({ client }: {
client: Exclude<Driver, "sqlite3">;
}) => Record<string, any>)[];
mssql: (({ client }: {
client: Exclude<Driver, "sqlite3">;
}) => Record<string, any>)[];
};