File

libs/nx/src/executors/introspection/compat/__test/example-library/src/other/derived-types.ts

Index

Properties

Properties

abc
Type string
ignoreMe
Type string
parties
Type string
import { AbstractBuildingBlock } from '@allianz/taly-core';

interface BaseForType {
  parties: string;
  abc: string;
  ignoreMe: string;
}

type DerivedType = Pick<BaseForType, 'parties' | 'abc'>;

interface MyState {
  deriveProp: DerivedType;
  a: string;
}

export class MyComponent extends AbstractBuildingBlock<MyState> {}

results matching ""

    No results matching ""