Make typing intent clearer

This commit is contained in:
Bob van de Vijver 2024-11-27 17:30:23 +01:00 committed by GitHub
parent d19ab26a33
commit 9ae73f4ffc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -121,6 +121,6 @@ export interface DOM {
} }
type IconDefinitionOrPack = IconDefinition | IconPack; type IconDefinitionOrPack = IconDefinition | IconPack;
export interface Library { export interface Library {
add(...definitions: IconDefinitionOrPack[] | IconDefinitionOrPack[][]): void; add(...definitions: Array<IconDefinitionOrPack | IconDefinitionOrPack[]>): void;
reset(): void; reset(): void;
} }