@zudojs/config 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* ConfigurationManager error types re-exported from @zudojs/errors.
|
|
5
5
|
*/
|
|
6
6
|
import { ConfigurationError, createConfigurationError, isConfigurationError, missingConfigurationError, invalidConfigurationError } from "@zudojs/errors";
|
|
7
|
+
import type { ConfigValidationIssue } from "../configSchema/configSchema.type.js";
|
|
7
8
|
/**
|
|
8
9
|
* Error thrown when complete configuration validation fails.
|
|
9
10
|
*
|
|
@@ -11,8 +12,8 @@ import { ConfigurationError, createConfigurationError, isConfigurationError, mis
|
|
|
11
12
|
* the base ConfigurationError from @zudojs/errors.
|
|
12
13
|
*/
|
|
13
14
|
export declare class ConfigManagerValidationError extends ConfigurationError {
|
|
14
|
-
readonly issues: readonly
|
|
15
|
-
constructor(issues: readonly
|
|
15
|
+
readonly issues: readonly ConfigValidationIssue[];
|
|
16
|
+
constructor(issues: readonly ConfigValidationIssue[]);
|
|
16
17
|
}
|
|
17
18
|
export { ConfigurationError, createConfigurationError, isConfigurationError, missingConfigurationError, invalidConfigurationError, };
|
|
18
19
|
//# sourceMappingURL=configManager.error.d.ts.map
|