Skip to content

Commit

Permalink
chore: type callBack functions
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentC35 committed Jan 8, 2025
1 parent e44051b commit cb4a123
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/tools/externalResources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ export async function getResourcesFromExternalQuestionnaire({
callBackUnit,
}: {
questionnaire: ExternalQuestionnaire
callBackTotal: any
callBackReset: any
callBackUnit: any
callBackTotal: (total: number) => void
callBackReset: () => void
callBackUnit: () => void
}): Promise<void> {
const transformedManifest = await getTransformedManifest(questionnaire.id)

Expand Down

0 comments on commit cb4a123

Please sign in to comment.