googlevideo
Version:
A set of utilities for working with Google Video APIs.
12 lines (11 loc) • 481 B
TypeScript
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
export declare const protobufPackage = "video_streaming";
export interface StreamProtectionStatus {
status?: number | undefined;
field2?: number | undefined;
}
export declare const StreamProtectionStatus: MessageFns<StreamProtectionStatus>;
export interface MessageFns<T> {
encode(message: T, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): T;
}