ActionBar.d.ts 1.0 KB

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