ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
43 lines (42 loc) • 1.64 kB
TypeScript
import type { CSSProperties, ExtractPropTypes, PropType } from 'vue';
import type { ListGridType } from '.';
export declare const listItemProps: () => {
prefixCls: StringConstructor;
extra: import("vue-types").VueTypeValidableDef<any>;
actions: import("vue-types").VueTypeValidableDef<unknown[]> & {
default: () => unknown[];
};
grid: PropType<ListGridType>;
colStyle: {
type: PropType<CSSProperties>;
default: CSSProperties;
};
};
export declare type ListItemProps = Partial<ExtractPropTypes<ReturnType<typeof listItemProps>>>;
declare const _default: import("vue").DefineComponent<{
prefixCls: StringConstructor;
extra: import("vue-types").VueTypeValidableDef<any>;
actions: import("vue-types").VueTypeValidableDef<unknown[]> & {
default: () => unknown[];
};
grid: PropType<ListGridType>;
colStyle: {
type: PropType<CSSProperties>;
default: CSSProperties;
};
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
prefixCls: StringConstructor;
extra: import("vue-types").VueTypeValidableDef<any>;
actions: import("vue-types").VueTypeValidableDef<unknown[]> & {
default: () => unknown[];
};
grid: PropType<ListGridType>;
colStyle: {
type: PropType<CSSProperties>;
default: CSSProperties;
};
}>>, {
actions: unknown[];
colStyle: CSSProperties;
}>;
export default _default;