13ef9e248bf02f44b0bf8b8d986943e506c4dc6eed1bdf154ca8a9da10e481d0b18734b9b3b655a628cf2d7d70dae4cf9b18dca5a3fd6caa185cf582fe98bf 237 B

1234
  1. import type Button from './button.vue';
  2. import type ButtonGroup from './button-group.vue';
  3. export type ButtonInstance = InstanceType<typeof Button> & unknown;
  4. export type ButtonGroupInstance = InstanceType<typeof ButtonGroup> & unknown;