import { CaseStyle } from "kryo/case-style"; import { TsEnumType } from "kryo/types/ts-enum"; export enum VideoDeblocking { PacketValue, Off, Level1, Level2, Level3, Level4, } export const $VideoDeblocking: TsEnumType = new TsEnumType({ enum: VideoDeblocking, changeCase: CaseStyle.KebabCase, });