SizeContext.d.ts 252 B

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