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