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