From 8903e2b958f81bdd677b524548dc5be79686a592 Mon Sep 17 00:00:00 2001 From: Farnabaz Date: Fri, 28 Jun 2024 13:11:48 +0200 Subject: [PATCH] fix(parser): stripe internal types from events --- src/parser.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parser.ts b/src/parser.ts index e96bbde..3732d7c 100644 --- a/src/parser.ts +++ b/src/parser.ts @@ -203,6 +203,7 @@ export function useComponentMetaParser ( component.meta.props = component.meta.props.map(stripeTypeScriptInternalTypesSchema) component.meta.slots = component.meta.slots.map(stripeTypeScriptInternalTypesSchema) component.meta.exposed = component.meta.exposed.map(stripeTypeScriptInternalTypesSchema) + component.meta.events = component.meta.events.map(stripeTypeScriptInternalTypesSchema) components[component.pascalName] = component } catch (e) {