We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a52aead commit 1b55870Copy full SHA for 1b55870
lib/service.ts
@@ -17,6 +17,8 @@
17
import { LoggerFacade, LogLevel, LogLevelToLower } from './logging/logger'
18
import { resolvablePromise, ResolvablePromise } from "./utils/promise/resolvablePromise";
19
20
+export const SERVICE_FAILED_TO_START = '%s failed to start, reason: %s';
21
+export const SERVICE_STOPPED_BEFORE_RUNNING = '%s stopped before running';
22
23
/**
24
* The service interface represents an object with an operational state,
@@ -130,7 +132,3 @@ export abstract class BaseService implements Service {
130
132
131
133
abstract stop(): void;
134
}
-
135
-export const SERVICE_FAILED_TO_START = '%s failed to start, reason: %s';
136
-export const SERVICE_STOPPED_BEFORE_RUNNING = '%s stopped before running';
0 commit comments