From af35fe53d6c49d250a309bca511cf107e4cb7cea Mon Sep 17 00:00:00 2001 From: Matej Vilk Date: Tue, 5 Nov 2019 22:36:10 +0100 Subject: [PATCH] Fix Geo Object's key name (#40038) --- types/ical/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/ical/index.d.ts b/types/ical/index.d.ts index 6599a29592..091baf75fa 100644 --- a/types/ical/index.d.ts +++ b/types/ical/index.d.ts @@ -1,6 +1,7 @@ // Type definitions for ical 0.6 // Project: https://github.com/peterbraden/ical.js // Definitions by: Nick Clifford +// Matej Vilk // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.8 @@ -51,7 +52,7 @@ export type CalendarComponent = { export interface Geo { lat: number; - long: number; + lon: number; } export interface FullCalendar {