index.d.ts 872 B

1234567891011121314151617181920212223
  1. export declare const ActionBar: import("../utils").WithInstall<import("vue").DefineComponent<{
  2. placeholder: BooleanConstructor;
  3. safeAreaInsetBottom: {
  4. type: BooleanConstructor;
  5. default: true;
  6. };
  7. }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  8. placeholder: BooleanConstructor;
  9. safeAreaInsetBottom: {
  10. type: BooleanConstructor;
  11. default: true;
  12. };
  13. }>>, {
  14. placeholder: boolean;
  15. safeAreaInsetBottom: boolean;
  16. }>>;
  17. export default ActionBar;
  18. export type { ActionBarProps } from './ActionBar';
  19. declare module 'vue' {
  20. interface GlobalComponents {
  21. VanActionBar: typeof ActionBar;
  22. }
  23. }