@decaf-ts/for-postgres
Version:
template for ts projects
26 lines (25 loc) • 768 B
TypeScript
/**
* @description Regular expression to identify reserved attributes in PostgreSQL
* @summary Matches any attribute that is a PostgreSQL reserved keyword
* @const reservedAttributes
* @memberOf module:for-postgres
*/
export declare const reservedAttributes: RegExp;
export declare const PostgresFlavour = "postgres";
/**
* @description Key constants used in PostgreSQL operations
* @summary Collection of string constants for PostgreSQL database properties and operations
* @const PostgresKeys
* @type {PostgrsKeysType}
* @memberOf module:for-postgres
*/
export declare const PostgresKeys: {
SEPARATOR: string;
ID: string;
VERSION: string;
DELETED: string;
TABLE: string;
SCHEMA: string;
SEQUENCE: string;
INDEX: string;
};