answer.ts 73 B

1234
  1. export interface IAnswer<ID = string> {
  2. question: ID
  3. value: string
  4. }