@noeldemartin/faker
Version:
Generate massive amounts of fake contextual data
23 lines (22 loc) • 416 B
TypeScript
import type { LocaleEntry } from './definitions';
/**
* The possible definitions related to databases.
*/
export declare type DatabaseDefinitions = LocaleEntry<{
/**
* Database engines.
*/
engine: string[];
/**
* Database collations.
*/
collation: string[];
/**
* Column names.
*/
column: string[];
/**
* Column types.
*/
type: string[];
}>;