From 31279afbb17ff34ec3689ad34ea54685fc4fa672 Mon Sep 17 00:00:00 2001 From: Tafel <35837839+tafelnl@users.noreply.github.com> Date: Thu, 19 Jun 2025 13:48:24 +0200 Subject: [PATCH] fix: add missing `Maps3DLibrary` --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index a1f91d5a..c77808ca 100644 --- a/src/index.ts +++ b/src/index.ts @@ -22,6 +22,7 @@ export const DEFAULT_ID = "__googleMapsScriptId"; export type Library = | "core" | "maps" + | "maps3d" | "places" | "geocoding" | "routes" @@ -448,6 +449,7 @@ export class Loader { */ public importLibrary(name: "core"): Promise; public importLibrary(name: "maps"): Promise; + public importLibrary(name: "maps3d"): Promise; public importLibrary(name: "places"): Promise; public importLibrary( name: "geocoding"