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 <jeroen.claassens@live.nl>
This commit is contained in:
Jeroen Claassens 2019-03-27 11:22:23 +01:00
parent 299abb1fb1
commit 659b7588f9
2 changed files with 9 additions and 0 deletions

View File

@ -14,6 +14,14 @@ export interface IconDefinition extends IconLookup {
string, // unicode string, // unicode
string // svgPathData string // svgPathData
]; ];
[index: string]: [
number, // width
number, // height
string[], // ligatures
string, // unicode
string // svgPathData
] | IconName | IconPrefix;
} }
export interface IconPack { export interface IconPack {

View File

@ -110,4 +110,5 @@ type IconDefinitionOrPack = IconDefinition | IconPack;
export interface Library { export interface Library {
add(...definitions: IconDefinitionOrPack[]): void; add(...definitions: IconDefinitionOrPack[]): void;
reset(): void; reset(): void;
readonly definitions: {fas: IconDefinition, fab: IconDefinition, far: IconDefinition, fal: IconDefinition};
} }