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

GoogleMap

import type { GoogleMap } from "https://raw.githubusercontent.com/scrapbox-jp/types/0.1.2/mod.ts";
type GoogleMap = {
type: "location";
unit: UnitBase & {
latitude: number;
longitude: number;
zoom: number;
title?: string;
}
;
children: PlainText;
}
;

§Type

§
{
type: "location";
unit: UnitBase & {
latitude: number;
longitude: number;
zoom: number;
title?: string;
}
;
children: PlainText;
}
[src]