shared.d.ts 482 B

123456789101112131415161718192021
  1. export declare const pickerProps: {
  2. title: StringConstructor;
  3. loading: BooleanConstructor;
  4. showToolbar: BooleanConstructor;
  5. cancelButtonText: {
  6. type: StringConstructor;
  7. value: string;
  8. };
  9. confirmButtonText: {
  10. type: StringConstructor;
  11. value: string;
  12. };
  13. visibleItemCount: {
  14. type: NumberConstructor;
  15. value: number;
  16. };
  17. itemHeight: {
  18. type: NumberConstructor;
  19. value: number;
  20. };
  21. };