Files
standardnotes-app-web/app/assets/javascripts/Components/ChallengeModal/InputValue.tsx
2022-05-30 12:42:52 +05:30

8 lines
164 B
TypeScript

import { ChallengePrompt } from '@standardnotes/snjs'
export type InputValue = {
prompt: ChallengePrompt
value: string | number | boolean
invalid: boolean
}