Interface Question

interface Question {
    details?: string;
    password?: boolean;
    text: string;
}

Properties

details?: string
password?: boolean
text: string