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