You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
427 B
11 lines
427 B
import type { Message } from "../types.js";
|
|
import type { DescFile } from "../descriptors.js";
|
|
import type { GenMessage } from "./types.js";
|
|
import type { JsonValue } from "../json-value.js";
|
|
/**
|
|
* Hydrate a message descriptor.
|
|
*
|
|
* @private
|
|
*/
|
|
export declare function messageDesc<Shape extends Message, JsonType extends JsonValue = JsonValue>(file: DescFile, path: number, ...paths: number[]): GenMessage<Shape, JsonType>;
|