@exposure-lib/vue2
Version:
17 lines (12 loc) • 354 B
TypeScript
import VueType from 'vue';
declare const ExposurePLugin: {
install: InstallHandlerType;
};
export default ExposurePLugin;
declare interface InstallHandlerType {
(_Vue: typeof VueType, options?: {
threshold?: number;
}): void;
}
export declare const useResetExposure: (el?: Element | undefined) => void;
export { }