zarm
Version:
基于 React 的移动端UI库
8 lines (7 loc) • 321 B
TypeScript
import type { PickerColumnItem, PickerValue } from '../picker-view';
import type { PickerProps } from './Picker';
export interface PickerPromptValue {
value: PickerValue[];
items: PickerColumnItem[];
}
export declare const prompt: (props: Omit<PickerProps, 'visible' | 'children'>) => Promise<PickerPromptValue>;