MCPcopy
hub / github.com/msgbyte/tianji / UseTianjiSurveyOptions

Interface UseTianjiSurveyOptions

packages/react/src/useTianjiSurvey.ts:11–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9 openApiClient.$OpenApiTs['/workspace/{workspaceId}/survey/{surveyId}/get']['get']['res']['200'];
10
11interface UseTianjiSurveyOptions {
12 baseUrl?: string;
13 workspaceId: string;
14 surveyId: string;
15}
16export function useTianjiSurvey(options: UseTianjiSurveyOptions) {
17 const [isLoading, setIsLoading] = useState(false);
18 const [info, setInfo] = useState<SurveyInfo | undefined>(undefined);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected