mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-20 02:05:21 -04:00

Improve linting and fix linting errors Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
4 lines
249 B
TypeScript
4 lines
249 B
TypeScript
import { IconLookup, IconName, IconPrefix } from '@fortawesome/fontawesome-common-types'
|
|
|
|
// This icon prop is a workaround, because ESLint doesn't find the font awesome IconProp
|
|
export type IconProp = IconName | [IconPrefix, IconName] | IconLookup
|