@zoff-tech/zt-bottom-drawer
Version:
Bottom Drawer / Web Component
20 lines (19 loc) • 429 B
TypeScript
export type PushNavOptions = {
selectorContent?: string;
selectorGesture?: string;
positions?: string;
positionName?: string;
disableGesture?: boolean;
fixCurrentPosition?: boolean;
allowScroll?: boolean;
};
export type ActiveComponent = {
__zt_options: PushNavOptions;
component: {
__zt_navDrawer: {
options: PushNavOptions;
resolve: (arg: boolean) => void;
};
tagName: string;
};
};