libs/nx/src/executors/introspection/__test/example-library/src/other/person.ts
Properties |
| addresses | |
| Type |
Address[]
|
| firstName | |
| Type |
string
|
| name | |
| Type |
string
|
export interface Person {
name: string;
firstName: string;
addresses: Address[];
}
export interface Address {
city: string;
country: string;
type: string;
}