@grpc/grpc-js
Version:
gRPC Library for Node - pure JS implementation
8 lines (7 loc) • 400 B
TypeScript
export declare const SymbolVisibility: {
readonly VISIBILITY_UNSET: "VISIBILITY_UNSET";
readonly VISIBILITY_LOCAL: "VISIBILITY_LOCAL";
readonly VISIBILITY_EXPORT: "VISIBILITY_EXPORT";
};
export type SymbolVisibility = 'VISIBILITY_UNSET' | 0 | 'VISIBILITY_LOCAL' | 1 | 'VISIBILITY_EXPORT' | 2;
export type SymbolVisibility__Output = typeof SymbolVisibility[keyof typeof SymbolVisibility];