libs/nx/src/executors/introspection/compat/__test/example-library/src/other/type-instead-of-interface-error.ts
import { AbstractBuildingBlock } from '@allianz/taly-core';
type MyState = {
propA: string;
propB: string;
};
interface MyResources {
propA: string;
}
export class MyComponent extends AbstractBuildingBlock<MyState, MyResources> {}