MCPcopy Create free account
hub / github.com/anus-dev/ANUS / constructor

Method constructor

packages/cli/src/config/settings.ts:75–86  ·  view source on GitHub ↗
(
    system: SettingsFile,
    user: SettingsFile,
    workspace: SettingsFile,
    errors: SettingsError[],
  )

Source from the content-addressed store, hash-verified

73}
74export class LoadedSettings {
75 constructor(
76 system: SettingsFile,
77 user: SettingsFile,
78 workspace: SettingsFile,
79 errors: SettingsError[],
80 ) {
81 this.system = system;
82 this.user = user;
83 this.workspace = workspace;
84 this.errors = errors;
85 this._merged = this.computeMergedSettings();
86 }
87
88 readonly system: SettingsFile;
89 readonly user: SettingsFile;

Callers

nothing calls this directly

Calls 1

computeMergedSettingsMethod · 0.95

Tested by

no test coverage detected