ether-admin/node_modules/ant-design-vue/lib/config-provider/SizeContext.d.ts

5 lines
252 B
TypeScript

import type { Ref } from 'vue';
export type SizeType = 'small' | 'middle' | 'large' | undefined;
export declare const useInjectSize: () => Ref<SizeType, SizeType>;
export declare const useProviderSize: (size: Ref<SizeType>) => Ref<SizeType, SizeType>;