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