/** * runsnative/jsx-vue * Augments Vue 3 template types so all run-* elements are accepted. * Import once from your entry point or a global .d.ts file. */ declare module '@vue/runtime-dom' { interface IntrinsicElementAttributes { [elemName: `run-${string}`]: Record; } } declare module '@vue/runtime-core' { interface GlobalComponents { [elemName: `run-${string}`]: { new (): HTMLElement }; } } export {};