UNPKG

element-plus

Version:

A Component Library for Vue 3

18 lines (17 loc) 1 kB
import type { ExtractPropTypes } from 'vue'; import type { ZIndexProperty } from 'csstype'; export declare const affixProps: { readonly zIndex: import("element-plus/es/utils/props").BuildPropReturn<import("element-plus/es/utils/props").PropWrapper<ZIndexProperty>, 100, unknown, unknown, unknown>; readonly target: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly offset: import("element-plus/es/utils/props").BuildPropReturn<NumberConstructor, 0, unknown, unknown, unknown>; readonly position: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "top", unknown, "top" | "bottom", unknown>; }; export declare type AffixProps = ExtractPropTypes<typeof affixProps>; export declare const affixEmits: { scroll: ({ scrollTop, fixed }: { scrollTop: number; fixed: boolean; }) => boolean; change: (fixed: boolean) => boolean; }; export declare type AffixEmits = typeof affixEmits;