import { PTestCategory } from "../answer/types"; import { PTestOpt } from "./opt/interface-client"; export interface PTestQuestion { id: number; text: string; category: PTestCategory; opts: [PTestOpt, PTestOpt, PTestOpt]; }