export interface Person {
  name: string;
  age: number;
}

export const enum SampleData {
  name = "toshi-toma",
  age = 24,
}
