5 lines
89 B
TypeScript
5 lines
89 B
TypeScript
type Question = string;
|
|
type Answer = string;
|
|
|
|
export type QnaPair = [Question, Answer];
|