src/system-builder/config/subsystem.ts
Subsystem reference to match. The id and name can be regular expressions.
Properties |
id |
id:
|
Type : string
|
Defined in src/system-builder/config/subsystem.ts:6
|
The string/regex to match agains the subsystem's ID |
name |
name:
|
Type : string
|
Defined in src/system-builder/config/subsystem.ts:8
|
The string/regex to match agains the subsystem's Name |
token |
token:
|
Type : any
|
Defined in src/system-builder/config/subsystem.ts:10
|
Can be an InjectionToken or class |
export interface Subsystem {
/** The string/regex to match agains the subsystem's ID */
id?: string;
/** The string/regex to match agains the subsystem's Name */
name?: string;
/** Can be an InjectionToken or class */
token: any;
}