weareinreach / InReach

Avoid having repeated named exports or default exports JS-E1004
Bug risk
Major
2 occurrences in this check
Multiple exports of name 'VariantNames'
115		[V in keyof (typeof variants)[K]]: V
116	}
117}
118export type VariantNames = typeof variantNames
Multiple exports of name 'VariantNames'
110	},
111} as const
112
113export type VariantNames = {114	[K in keyof typeof variants]: {
115		[V in keyof (typeof variants)[K]]: V
116	}