More types for history, config/interfaces and Request.flash

Signed-off-by: David Mehren <dmehren1@gmail.com>
This commit is contained in:
David Mehren 2020-05-24 17:07:13 +02:00
parent fa301ab450
commit 1f517bfb99
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB
3 changed files with 14 additions and 12 deletions

View file

@ -36,7 +36,7 @@ export interface Config {
forbiddenNoteIDs: string[];
defaultPermission: string;
dbURL: string;
db: any;
db;
sslKeyPath: string;
sslCertPath: string;
sslCAPath: string[];
@ -153,5 +153,6 @@ export interface Config {
linkifyHeaderStyle: string;
// TODO: Remove escape hatch for dynamically added properties
// eslint-disable-next-line @typescript-eslint/no-explicit-any
[propName: string]: any;
}