person.ts 167 B

123456
  1. export interface Person {
  2. // If age exists, then it must be a number; but it is not required to exist.
  3. age?: number;
  4. formatName: () => string;
  5. name: string;
  6. }