import { CaseStyle } from "kryo/case-style"; import { TsEnumType } from "kryo/types/ts-enum"; export enum SoundType { Mono, Stereo, } export const $SoundType: TsEnumType = new TsEnumType({ enum: SoundType, changeCase: CaseStyle.KebabCase, });