libs/nx/src/executors/introspection/__test/example-library/src/other/class.ts
Properties |
| firstLayerPropertyA | |
| Type |
string
|
| firstLayerPropertyB | |
| Type |
()[]
|
| firstLayerPropertyC | |
| Type |
boolean
|
export interface FormClass {
firstLayerPropertyA: string;
firstLayerPropertyB: (typeof MyClass)[];
firstLayerPropertyC: boolean;
}
class MyClass {
myPropertyA: string;
myPropertyB: boolean;
myPropertyC: number;
myPropertyD: (typeof MyClass)[];
}