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