Last change
on this file since 571e0df was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago |
adding photos
|
-
Property mode
set to
100644
|
File size:
594 bytes
|
Rev | Line | |
---|
[59329aa] | 1 | import { IconDefinition, IconName, IconPack, IconPrefix } from '@fortawesome/fontawesome-svg-core';
|
---|
| 2 | export interface FaIconLibraryInterface {
|
---|
| 3 | addIcons(...icons: IconDefinition[]): void;
|
---|
| 4 | addIconPacks(...packs: IconPack[]): void;
|
---|
| 5 | getIconDefinition(prefix: IconPrefix, name: IconName): IconDefinition | null;
|
---|
| 6 | }
|
---|
| 7 | export declare class FaIconLibrary implements FaIconLibraryInterface {
|
---|
| 8 | private definitions;
|
---|
| 9 | addIcons(...icons: IconDefinition[]): void;
|
---|
| 10 | addIconPacks(...packs: IconPack[]): void;
|
---|
| 11 | getIconDefinition(prefix: IconPrefix, name: IconName): IconDefinition | null;
|
---|
| 12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.