Input.ts 159 B

1234567
  1. import type { QnaPair } from './QnAPair';
  2. export type RemoteInput = string;
  3. export type LocalInput = QnaPair;
  4. export type Input = RemoteInput | LocalInput;