moleculer-api
Version:
A dynamic API Gateway for MoleculerJS which updates REST endpoints and aggregated GraphQL schema, access control policy for each action calls from metadata of remote services schema without restart or deployment.
19 lines (18 loc) • 464 B
TypeScript
export declare type ServiceNodeProps = {
id: string;
displayName: string;
meta: object | null;
};
export declare class ServiceNode {
protected readonly props: ServiceNodeProps;
constructor(props: ServiceNodeProps);
get id(): string;
get displayName(): string;
get meta(): Readonly<object> | null;
toString(): string;
getInformation(): {
id: string;
displayName: string;
meta: object | null;
};
}