mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
15 lines
326 B
TypeScript
15 lines
326 B
TypeScript
import type { CSSProperties, VNodeTypes } from 'vue';
|
|
import type { 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;
|