libs/nx/src/executors/shared/metadata-utils/__test/example-library/src/other/nested.ts
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> {}