mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-04-07 00:47:15 +08:00
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:
parent
299abb1fb1
commit
659b7588f9
@ -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 {
|
||||||
|
@ -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};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user