libs/nx/src/executors/shared/metadata-utils/__test/example-library/src/other/form.ts
Pick
Properties |
| createdAt | |
| Type |
number
|
| person | |
| Type |
Person
|
| valid | |
| Type |
boolean
|
import { Person } from './person';
interface AnotherForm {
categories: string[];
value: string;
}
export interface MyFormType extends Pick<AnotherForm, 'categories'> {
valid: boolean;
createdAt: number;
person: Person;
}