UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

7 lines (6 loc) 313 B
import type { VNodeChild } from 'vue'; export type OnUpdateValue = (value: string & null) => void; export type OnConfirm = OnUpdateValue; export type OnUpdateValueImpl = (value: string | null) => void; export type OnConfirmImpl = OnUpdateValueImpl; export type RenderLabel = (value: string | null) => VNodeChild;