y-design-ssr
Version:
SSR component library of YUI with Vue3
71 lines (70 loc) • 1.87 kB
TypeScript
import { PropType, CSSProperties } from 'vue';
import { ZIndexProperty } from 'csstype';
declare const _default: import("vue").DefineComponent<{
modelValue: {
type: BooleanConstructor;
default: boolean;
};
zIndex: {
type: PropType<ZIndexProperty>;
default: null;
};
duration: {
type: NumberConstructor;
default: number;
};
customClass: {
type: StringConstructor;
default: string;
};
customStyle: {
type: PropType<CSSProperties>;
default: () => {};
};
lockScroll: {
type: BooleanConstructor;
default: boolean;
};
onAfterLeave: {
type: PropType<() => void>;
default: null;
};
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: {
type: BooleanConstructor;
default: boolean;
};
zIndex: {
type: PropType<ZIndexProperty>;
default: null;
};
duration: {
type: NumberConstructor;
default: number;
};
customClass: {
type: StringConstructor;
default: string;
};
customStyle: {
type: PropType<CSSProperties>;
default: () => {};
};
lockScroll: {
type: BooleanConstructor;
default: boolean;
};
onAfterLeave: {
type: PropType<() => void>;
default: null;
};
}>>, {
duration: number;
modelValue: boolean;
customClass: string;
customStyle: CSSProperties;
onAfterLeave: () => void;
lockScroll: boolean;
zIndex: ZIndexProperty;
}>;
export default _default;