mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
275 B
TypeScript
8 lines
275 B
TypeScript
import * as feather from "feather-icons";
|
|
|
|
feather.replace(); // $ExpectType void
|
|
feather.icons[""].toSvg(); // $ExpectType string
|
|
feather.icons[""].name; // $ExpectType string
|
|
feather.icons[""].contents; // $ExpectType string
|
|
feather.icons[""].tags; // $ExpectType string[]
|