mirror of
https://github.com/standardnotes/app
synced 2026-07-30 20:16:10 -04:00
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
|
|
}
|