From a165c35afa650605cb60e0fbd5a4e3429ea533d3 Mon Sep 17 00:00:00 2001 From: Jon Bee Date: Mon, 22 Jul 2024 09:05:17 -0500 Subject: [PATCH] Fixed: Typo in name of 'extension' prop --- types/index.d.cts | 2 +- types/index.d.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/types/index.d.cts b/types/index.d.cts index 775f383..0c43194 100644 --- a/types/index.d.cts +++ b/types/index.d.cts @@ -9,7 +9,7 @@ declare namespace phoneFns { areaCode: string; localCode: string; lineNumber: string; - extention: string; + extension: string; } interface Static { diff --git a/types/index.d.ts b/types/index.d.ts index 6299709..0c43194 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -9,7 +9,7 @@ declare namespace phoneFns { areaCode: string; localCode: string; lineNumber: string; - extention: string; + extension: string; } interface Static { @@ -32,7 +32,7 @@ declare namespace phoneFns { /** * Strips all of the special characters from the given string */ - uglify(phone: string|number): string; + uglify(phone: string | number): string; } }