UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

19 lines (15 loc) 376 B
import { SFUISchemaItem } from '../../schema/ui'; export interface SFBooleanWidgetSchema extends SFUISchemaItem { /** * Size of the `nz-switch` */ size?: 'default' | 'small'; /** * Content to be shown when the state is checked */ checkedChildren?: string; /** * Content to be shown when the state is unchecked */ unCheckedChildren?: string; }