Add TSX support to Typescript definition (#232)
This commit is contained in:
parent
870d9367b1
commit
d5ccc42f2f
|
@ -1,8 +1,8 @@
|
|||
import { FunctionalComponentOptions } from 'vue'
|
||||
import { FunctionalComponentOptions, VueConstructor } from 'vue'
|
||||
import { PropsDefinition } from 'vue/types/options'
|
||||
interface FontAwesomeIconProps { }
|
||||
interface FontAwesomeLayersProps { }
|
||||
interface FontAwesomeLayersTextProps { }
|
||||
export const FontAwesomeIcon: FunctionalComponentOptions<FontAwesomeIconProps, PropsDefinition<FontAwesomeIconProps>>
|
||||
export const FontAwesomeIcon: FunctionalComponentOptions<FontAwesomeIconProps, PropsDefinition<FontAwesomeIconProps>> & VueConstructor
|
||||
export const FontAwesomeLayers: FunctionalComponentOptions<FontAwesomeLayersProps, PropsDefinition<FontAwesomeLayersProps>>
|
||||
export const FontAwesomeLayersText: FunctionalComponentOptions<FontAwesomeLayersTextProps, PropsDefinition<FontAwesomeLayersTextProps>>
|
||||
|
|
Loading…
Reference in New Issue