first commit
This commit is contained in:
32
node_modules/vant/es/popup/shared.d.ts
generated
vendored
Normal file
32
node_modules/vant/es/popup/shared.d.ts
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
import type { OverlayProps } from '../overlay';
|
||||
import { Interceptor } from '../utils';
|
||||
import type { PropType, CSSProperties, TeleportProps } from 'vue';
|
||||
export declare const popupSharedProps: {
|
||||
show: BooleanConstructor;
|
||||
zIndex: (NumberConstructor | StringConstructor)[];
|
||||
overlay: {
|
||||
type: BooleanConstructor;
|
||||
default: true;
|
||||
};
|
||||
duration: (NumberConstructor | StringConstructor)[];
|
||||
teleport: PropType<TeleportProps["to"]>;
|
||||
lockScroll: {
|
||||
type: BooleanConstructor;
|
||||
default: true;
|
||||
};
|
||||
lazyRender: {
|
||||
type: BooleanConstructor;
|
||||
default: true;
|
||||
};
|
||||
beforeClose: PropType<Interceptor>;
|
||||
overlayProps: PropType<Partial<OverlayProps>>;
|
||||
overlayStyle: PropType<CSSProperties>;
|
||||
overlayClass: PropType<unknown>;
|
||||
transitionAppear: BooleanConstructor;
|
||||
closeOnClickOverlay: {
|
||||
type: BooleanConstructor;
|
||||
default: true;
|
||||
};
|
||||
};
|
||||
export type PopupSharedPropKeys = Array<keyof typeof popupSharedProps>;
|
||||
export declare const popupSharedPropKeys: PopupSharedPropKeys;
|
||||
Reference in New Issue
Block a user