From 659b7588f9270cf9ccbd34f1664599f67e63ead6 Mon Sep 17 00:00:00 2001 From: Jeroen Claassens Date: Wed, 27 Mar 2019 11:22:23 +0100 Subject: [PATCH] Resolve typings for unit testing This allows unit tests to be written on the library. Previously a "ts-ignore" statement would be required for this as the TypeScript Compiler would claim that "definitions" did not exist on "Library", despite the fact that when logging the full "Library" it most certianly did. I've made the property readonly since it should be immutable (as the "add" method should be used to add new definitions) and the index signature added to IconDefinitions is to satisfy the TypeScript compiler when the compiler option of "strict" (or "NoImplicitAny") is enabled. Signed-off-by: Jeroen Claassens --- .../@fortawesome/fontawesome-common-types/index.d.ts | 8 ++++++++ js-packages/@fortawesome/fontawesome-svg-core/index.d.ts | 1 + 2 files changed, 9 insertions(+) diff --git a/js-packages/@fortawesome/fontawesome-common-types/index.d.ts b/js-packages/@fortawesome/fontawesome-common-types/index.d.ts index 5677fa260..3981fa1cb 100644 --- a/js-packages/@fortawesome/fontawesome-common-types/index.d.ts +++ b/js-packages/@fortawesome/fontawesome-common-types/index.d.ts @@ -14,6 +14,14 @@ export interface IconDefinition extends IconLookup { string, // unicode string // svgPathData ]; + + [index: string]: [ + number, // width + number, // height + string[], // ligatures + string, // unicode + string // svgPathData + ] | IconName | IconPrefix; } export interface IconPack { diff --git a/js-packages/@fortawesome/fontawesome-svg-core/index.d.ts b/js-packages/@fortawesome/fontawesome-svg-core/index.d.ts index 0d8fd8b5b..8a42421c7 100644 --- a/js-packages/@fortawesome/fontawesome-svg-core/index.d.ts +++ b/js-packages/@fortawesome/fontawesome-svg-core/index.d.ts @@ -110,4 +110,5 @@ type IconDefinitionOrPack = IconDefinition | IconPack; export interface Library { add(...definitions: IconDefinitionOrPack[]): void; reset(): void; + readonly definitions: {fas: IconDefinition, fab: IconDefinition, far: IconDefinition, fal: IconDefinition}; }