mirror of
https://github.com/nestjs/nest.git
synced 2026-02-23 15:52:50 +00:00
8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
export type MsFundamentalPattern = string | number;
|
|
|
|
export interface MsObjectPattern {
|
|
[key: string]: MsFundamentalPattern | MsObjectPattern;
|
|
}
|
|
|
|
export type MsPattern = MsObjectPattern | MsFundamentalPattern;
|