Created
August 20, 2020 07:23
-
-
Save DopamineDriven/4d8a845593b8250f021d834e4a3a82ea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {IconDefinition, IconLookup, IconName, IconPrefix, IconPathData, IconPack } from '@fortawesome/fontawesome-common-types'; | |
export {IconDefinition, IconLookup, IconName, IconPrefix, IconPathData, IconPack } from '@fortawesome/fontawesome-common-types'; | |
export const dom: DOM; | |
export const library: Library; | |
export const parse: { transform(transformString: string): Transform }; | |
export const config: Config; | |
export function noAuto():void; | |
export function findIconDefinition(iconLookup: IconLookup): IconDefinition; | |
export function text(content: string, params?: TextParams): Text; | |
export function counter(content: string | number, params?: CounterParams): Counter; | |
export function toHtml(content: any): string; | |
export function toHtml(abstractNodes: AbstractElement): string; | |
export function layer( | |
assembler: ( | |
addLayerCallback: (layerToAdd: IconOrText | IconOrText[]) => void | |
) => void, | |
params?: LayerParams | |
): Layer; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment