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