index.d.ts 1.0 KB

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