8 lines
276 B
TypeScript
8 lines
276 B
TypeScript
import { defaultButtonLabel } from '../constants'
|
|
import { TextInputBlock } from './schema'
|
|
|
|
export const defaultTextInputOptions = {
|
|
isLong: false,
|
|
labels: { button: defaultButtonLabel, placeholder: 'Type your answer...' },
|
|
} as const satisfies TextInputBlock['options']
|