ServiceType represents a protobuf services. It provides metadata for reflection-based operations.

interface ServiceType {
    methods: {
        [localName: string]: MethodInfo;
    };
    typeName: string;
}

Properties

Properties

methods: {
    [localName: string]: MethodInfo;
}

A map of local name (safe to use in ECMAScript) to method.

Type declaration

typeName: string

The fully qualified name of the service.

Generated using TypeDoc