MCPcopy Create free account
hub / github.com/NativeScript/SimDeck / isViewMode

Function isViewMode

packages/client/src/app/uiState.ts:291–293  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

289}
290
291function isViewMode(value: unknown): value is ViewMode {
292 return value === "center" || value === "fit" || value === "manual";
293}
294
295function stringOrUndefined(value: unknown): string | undefined {
296 return typeof value === "string" ? value : undefined;

Callers 1

sanitizeViewportStateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected