Skip to content

Instantly share code, notes, and snippets.

@e06widu
Created July 14, 2020 01:42
Show Gist options
  • Save e06widu/2db5f0846e8a71e19e80b14072a9d39d to your computer and use it in GitHub Desktop.
Save e06widu/2db5f0846e8a71e19e80b14072a9d39d to your computer and use it in GitHub Desktop.
/**
* This interface defines all possible configuration variables for the application
*/
export interface Configuration {
dbConfiguration: DatabaseConfiguration;
}
interface DatabaseConfiguration {
username: string | undefined;
password: string | undefined;
database: string | undefined;
host: string | undefined;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment