vant/src/sticky/index.ts
2021-03-08 17:14:55 +08:00

9 lines
217 B
TypeScript

import { withInstall } from '../utils';
import _Sticky from './Sticky';
const Sticky = withInstall<typeof _Sticky>(_Sticky);
export default Sticky;
export { Sticky };
export type { StickyPosition } from './Sticky';