components-instance.d.ts 148 B

1234567
  1. declare global {
  2. type ComponentsInstance = {
  3. [Property in keyof GlobalComponents]: InstanceType<GlobalComponents[Property]>
  4. }
  5. }
  6. export { }