diff --git a/src/API/API.ts b/src/API/API.ts index 37ed0101..5ab205b6 100644 --- a/src/API/API.ts +++ b/src/API/API.ts @@ -21,8 +21,8 @@ export interface APIConfiguration extends LoggingConfiguration, FileControllerCo } export interface API { - start: () => Promise - stop: () => Promise + readonly start: () => Promise + readonly stop: () => Promise } export const API = (configuration: APIConfiguration): API => {