Add TSX support to Typescript definition (#232)

This commit is contained in:
Tyranteon 2020-06-15 16:38:14 +02:00 committed by GitHub
parent 870d9367b1
commit d5ccc42f2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

4
index.d.ts vendored
View File

@ -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>>