UNPKG

@nestjs/microservices

Version:

Nest - modern, fast, powerful node.js web framework (@microservices)

7 lines (6 loc) 266 B
export type MsFundamentalPattern = string | number; export type MsPatternMatch = RegExp; export interface MsObjectPattern { [key: string]: MsFundamentalPattern | MsObjectPattern; } export type MsPattern = MsObjectPattern | MsFundamentalPattern | MsPatternMatch;