14 lines
580 B
TypeScript
14 lines
580 B
TypeScript
export declare const AppData: {
|
|
readonly ConfigFileName: "bun-mariadb.config";
|
|
readonly MaxBackups: 10;
|
|
readonly MaxExports: 10;
|
|
readonly DefaultBackupDirName: ".backups";
|
|
readonly DefaultExportDirName: ".exports";
|
|
readonly DbSchemaManagerTableName: "__db_schema_manager__";
|
|
readonly DbSchemaFileName: "schema";
|
|
/** Priority order when resolving config/schema files */
|
|
readonly SupportedDataFileExtensions: readonly [".ts", ".js", ".json", ".yaml", ".yml"];
|
|
readonly MaxInitRetries: 50;
|
|
readonly InitRetryIntervalMilliseconds: 5000;
|
|
};
|