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