libs/nx/src/executors/shared/metadata-utils/__test/example-library/src/other/state/non-recursive-used-twice.ts
import { AbstractBuildingBlock } from '@allianz/taly-core';
interface MyState {
firstLayerPropertyA: SomeInterface;
firstLayerPropertyB: SomeInterface;
}
interface SomeInterface {
propertyA: number;
}
export class MyComponent extends AbstractBuildingBlock<MyState> {}