ant-design-vue/components/list/contextKey.ts

9 lines
211 B
TypeScript
Raw Permalink Normal View History

import type { InjectionKey, Ref } from 'vue';
export interface ListContext {
grid?: Ref<any>;
itemLayout?: Ref<string>;
}
export const ListContextKey: InjectionKey<ListContext> = Symbol('ListContextKey');