@devgrid/netron
Version:
A powerful TypeScript library for building distributed systems with event bus, streaming capabilities, and remote object invocation. Features WebSocket-based bidirectional communication between Node.js and browser environments, service discovery, and type
9 lines (8 loc) • 488 B
TypeScript
export declare const Service: (qualifiedName: string) => (target: any) => void;
export declare const Public: (options?: {
readonly?: boolean;
}) => (target: any, propertyKey: string | symbol, descriptor?: PropertyDescriptor) => void;
export declare const NetronService: (qualifiedName: string) => (target: any) => void;
export declare const NetronMethod: (options?: {
readonly?: boolean;
}) => (target: any, propertyKey: string | symbol, descriptor?: PropertyDescriptor) => void;