import { $Bytes } from "kryo/builtins/bytes"; import { $Uint8 } from "kryo/builtins/uint8"; import { CaseStyle } from "kryo/case-style"; import { DocumentIoType, DocumentType } from "kryo/types/document"; import { Uint8 } from "semantic-types"; export interface Vp6FlvAlphaVideoPacket { horizontalAdjustment: Uint8; verticalAdjustment: Uint8; data: Uint8Array; alphaData: Uint8Array; } // tslint:disable-next-line:max-line-length export const $Vp6FlvAlphaVideoPacket: DocumentIoType = new DocumentType({ properties: { horizontalAdjustment: {type: $Uint8}, verticalAdjustment: {type: $Uint8}, data: {type: $Bytes}, alphaData: {type: $Bytes}, }, changeCase: CaseStyle.SnakeCase, });