libs/nx/src/executors/shared/metadata-utils/__test/example-library/src/other/nested.ts
Properties |
propA | |
Type |
SomeType
|
propB | |
Type |
literal type
|
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> {}