Font Awesome Documention descibes ability to pass parameters to the dom.watch() function yet when attemping this the paramereters are not defined in the interface.

This commit is contained in:
rwilson504 2019-10-01 22:33:37 -04:00
parent 1c1b102b2b
commit c4c9ba4749

View File

@ -104,7 +104,7 @@ export interface DOM {
i2svg(params?: { node: Node; callback: () => void }): Promise<void>; i2svg(params?: { node: Node; callback: () => void }): Promise<void>;
css(): string; css(): string;
insertCss(): string; insertCss(): string;
watch(): void; watch(params?: { autoReplaceSvgRoot: Node; observeMutationsRoot: Node }): void;
} }
type IconDefinitionOrPack = IconDefinition | IconPack; type IconDefinitionOrPack = IconDefinition | IconPack;
export interface Library { export interface Library {