ActionBar.d.ts 1000 B

123456789101112131415161718192021222324252627
  1. import { type ExtractPropTypes } from 'vue';
  2. export declare const ACTION_BAR_KEY: unique symbol;
  3. declare const actionBarProps: {
  4. placeholder: BooleanConstructor;
  5. safeAreaInsetBottom: {
  6. type: BooleanConstructor;
  7. default: true;
  8. };
  9. };
  10. export declare type ActionBarProps = ExtractPropTypes<typeof actionBarProps>;
  11. declare const _default: import("vue").DefineComponent<{
  12. placeholder: BooleanConstructor;
  13. safeAreaInsetBottom: {
  14. type: BooleanConstructor;
  15. default: true;
  16. };
  17. }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
  18. placeholder: BooleanConstructor;
  19. safeAreaInsetBottom: {
  20. type: BooleanConstructor;
  21. default: true;
  22. };
  23. }>>, {
  24. placeholder: boolean;
  25. safeAreaInsetBottom: boolean;
  26. }>;
  27. export default _default;