SizeContext.d.ts 232 B

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