9 lines
625 B
TypeScript
9 lines
625 B
TypeScript
import { FunctionalComponentOptions, VueConstructor } from 'vue'
|
|
import { PropsDefinition } from 'vue/types/options'
|
|
interface FontAwesomeIconProps { }
|
|
interface FontAwesomeLayersProps { }
|
|
interface FontAwesomeLayersTextProps { }
|
|
export const FontAwesomeIcon: FunctionalComponentOptions<FontAwesomeIconProps, PropsDefinition<FontAwesomeIconProps>> & VueConstructor
|
|
export const FontAwesomeLayers: FunctionalComponentOptions<FontAwesomeLayersProps, PropsDefinition<FontAwesomeLayersProps>>
|
|
export const FontAwesomeLayersText: FunctionalComponentOptions<FontAwesomeLayersTextProps, PropsDefinition<FontAwesomeLayersTextProps>>
|