libs/nx/src/executors/introspection/compat/__test/example-library/src/other/nested.ts
Properties |
a | |
Type |
boolean
|
b | |
Type |
boolean
|
import { AbstractBuildingBlock } from '@allianz/taly-core';
interface SomeType {
a: boolean;
b: boolean;
}
interface MyState {
propA: SomeType;
propB: {
deep: boolean;
};
}
export class MyComponent extends AbstractBuildingBlock<MyState> {}