fix: Enable strict TypeScript settings

This commit is contained in:
Joachim Van Herwegen
2020-07-24 09:27:44 +02:00
parent 4001050588
commit dcff424f58
28 changed files with 115 additions and 105 deletions

View File

@@ -2,5 +2,5 @@
* Credentials identifying an entity accessing or owning data.
*/
export interface Credentials {
webID: string;
webID?: string;
}

View File

@@ -14,5 +14,6 @@ export class SimpleCredentialsExtractor extends CredentialsExtractor {
if (input.headers.authorization) {
return { webID: input.headers.authorization };
}
return {};
}
}