MCPcopy Create free account
hub / github.com/cosscom/coss / DebugContextValue

Interface DebugContextValue

apps/examples/calcom/components/debug-context.tsx:7–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import { createContext, type ReactNode, useContext, useState } from "react";
6
7interface DebugContextValue {
8 enableArtificialDelay: boolean;
9 isLoadingOverride: boolean | null;
10 setEnableArtificialDelay: (value: boolean) => void;
11 setIsLoadingOverride: (value: boolean | null) => void;
12}
13
14const DebugContext: Context<DebugContextValue | null> =
15 createContext<DebugContextValue | null>(null);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected