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