import { FontAwesome } from '@gibme/fontawesome'; declare global { interface JQueryStatic { /** * Creates a button with a fontawesome icon inside * * @param icon * @param options the button options */ createAwesomeButton(icon: string | string[], options?: Partial): JQuery; /** * Creates a Font Awesome Icon * * Note: The icon name must be specified without the `fa-` prefix. If the icon includes * multiple names (i.e. `fa-brand fa-x-twitter`) the icon should be specified as either * `brand x-twitter` or `['brand','x-twitter']` * * @param icon * @param options */ createAwesomeIcon(icon: string | string[], options?: Partial): JQuery; } } export {};