UNPKG

@bufbuild/protobuf

Version:

A complete implementation of Protocol Buffers in TypeScript, suitable for web browsers and Node.js.

10 lines (9 loc) 349 B
import type { Message } from "../types.js"; import type { DescFile } from "../descriptors.js"; import type { GenExtension } from "./types.js"; /** * Hydrate an extension descriptor. * * @private */ export declare function extDesc<Extendee extends Message, Value>(file: DescFile, path: number, ...paths: number[]): GenExtension<Extendee, Value>;