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

Level

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

Level information containing level number and its corresponding name.

interface Level {
name?: string;
number?: number;
}

§Properties

§
name?: string
[src]

Required. A name assigned to this Level, restricted to 3 characters. Consider how the elevator buttons would be labeled for this level if there was an elevator.

§
number?: number
[src]

Optional. Floor number, used for ordering. 0 indicates the ground level, 1 indicates the first level above ground level, -1 indicates the first level under ground level. Non-integer values are OK.