rearrage_stuff
This commit is contained in:
39
node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.d.ts
generated
vendored
Normal file
39
node_modules/@bufbuild/protobuf/dist/cjs/reflect/unsafe.d.ts
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
import type { DescField, DescOneof } from "../descriptors.js";
|
||||
export declare const unsafeLocal: unique symbol;
|
||||
/**
|
||||
* Return the selected field of a oneof group.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
export declare function unsafeOneofCase(target: Record<string, any>, oneof: DescOneof): DescField | undefined;
|
||||
/**
|
||||
* Returns true if the field is set.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
export declare function unsafeIsSet(target: Record<string, any>, field: DescField): boolean;
|
||||
/**
|
||||
* Returns true if the field is set, but only for singular fields with explicit
|
||||
* presence (proto2).
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
export declare function unsafeIsSetExplicit(target: object, localName: string): boolean;
|
||||
/**
|
||||
* Return a field value, respecting oneof groups.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
export declare function unsafeGet(target: Record<string, unknown>, field: DescField): unknown;
|
||||
/**
|
||||
* Set a field value, respecting oneof groups.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
export declare function unsafeSet(target: Record<string, unknown>, field: DescField, value: unknown): void;
|
||||
/**
|
||||
* Resets the field, so that unsafeIsSet() will return false.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
export declare function unsafeClear(target: Record<string, any>, field: DescField): void;
|
||||
Reference in New Issue
Block a user