Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Grid

import type { Grid } from "https://googleapis.deno.dev/v1/forms:v1.ts";

A grid of choices (radio or check boxes) with each row constituting a separate question. Each row has the same choices, which are shown as the columns.

interface Grid {
columns?: ChoiceQuestion;
shuffleQuestions?: boolean;
}

§Properties

§

Required. The choices shared by each question in the grid. In other words, the values of the columns. Only CHECK_BOX and RADIO choices are allowed.

§
shuffleQuestions?: boolean
[src]

If true, the questions are randomly ordered. In other words, the rows appear in a different order for every respondent.