Skip to content

Instantly share code, notes, and snippets.

@onwuvic
Created May 11, 2020 07:36
Show Gist options
  • Save onwuvic/9d2624aad6f90dcc962055cb7139b53f to your computer and use it in GitHub Desktop.
Save onwuvic/9d2624aad6f90dcc962055cb7139b53f to your computer and use it in GitHub Desktop.
export interface IDatabaseConfigAttributes {
username?: string;
password?: string;
database?: string;
host?: string;
port?: number | string;
dialect?: string;
urlDatabase?: string;
}
export interface IDatabaseConfig {
development: IDatabaseConfigAttributes;
test: IDatabaseConfigAttributes;
production: IDatabaseConfigAttributes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment