MCPcopy
hub / github.com/alm-tools/alm / ServerState

Interface ServerState

src/serverState.ts:4–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2 * Server static global state info (shared by client).
3 */
4export interface ServerState {
5 update?: {
6 latest: string;
7 current: string;
8 type: 'latest' | 'major' | 'minor' | 'patch' | 'prerelease' | 'build';
9 name: string;
10 },
11 version: string,
12 typescriptVersion: string,
13}
14export let serverState: ServerState = {
15 version: '0.0.0',
16 typescriptVersion: '0.0.0',

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected