File

src/app/app-poll/app-poll.ts

Index

Properties

Properties

answer
answer: Answer
Type : Answer
id
id: number
Type : number
publishedDate
publishedDate: number
Type : number
title
title: string
Type : string
export interface AppPoll{

    id: number,
    title: string,
    publishedDate: number,
    answer: Answer
}

export interface Answer{
    type: string,
    options: Option[];
}

export interface Option{
    id: number,
    label: string
}

result-matching ""

    No results matching ""