ant-design-vue/components/vc-virtual-list/interface.ts
2020-10-01 17:20:10 +08:00

15 lines
316 B
TypeScript

import { CSSProperties, VNodeTypes } from 'vue';
import { Key } from '../_util/type';
export type RenderFunc<T> = (
item: T,
index: number,
props: { style?: CSSProperties },
) => VNodeTypes;
export interface SharedConfig<T> {
getKey: (item: T) => Key;
}
export type GetKey<T = object> = (item: T) => Key;