How i can export my enums type

local Enums = {
	GunEvent = {
		Shoot = "Shoot"
	},
	
	GunAction = {
		ShootAction = "ShootAction",
		ReloadAction = "ReloadAction"
	},
}

export type Enums = typeof(Enums[...]) -- <-------

return Enums

1 Like