Skip to content

Commit

Permalink
chore: consistent typings
Browse files Browse the repository at this point in the history
  • Loading branch information
cazala committed Oct 4, 2023
1 parent b75df8a commit ba620a9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ActionPayload } from '@dcl/asset-packs'
import { ActionPayload, ActionType } from '@dcl/asset-packs'

export interface Props {
value: ActionPayload['play_sound']
onUpdate: (value: ActionPayload['play_sound']) => void
value: ActionPayload<ActionType.PLAY_SOUND>
onUpdate: (value: ActionPayload<ActionType.PLAY_SOUND>) => void
}

0 comments on commit ba620a9

Please sign in to comment.