Skip to content

Commit

Permalink
Remove declare module usage in TS definitions (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
btaens authored and robmadole committed Nov 3, 2019
1 parent 700a86c commit 2251a3d
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
declare module '@fortawesome/vue-fontawesome' {
import { FunctionalComponentOptions } from 'vue'
import { PropsDefinition } from 'vue/types/options'
interface FontAwesomeIconProps { }
interface FontAwesomeLayersProps { }
interface FontAwesomeLayersTextProps { }
export const FontAwesomeIcon: FunctionalComponentOptions<FontAwesomeIconProps, PropsDefinition<FontAwesomeIconProps>>
export const FontAwesomeLayers: FunctionalComponentOptions<FontAwesomeLayersProps, PropsDefinition<FontAwesomeLayersProps>>
export const FontAwesomeLayersText: FunctionalComponentOptions<FontAwesomeLayersTextProps, PropsDefinition<FontAwesomeLayersTextProps>>
}
import { FunctionalComponentOptions } from 'vue'
import { PropsDefinition } from 'vue/types/options'
interface FontAwesomeIconProps { }
interface FontAwesomeLayersProps { }
interface FontAwesomeLayersTextProps { }
export const FontAwesomeIcon: FunctionalComponentOptions<FontAwesomeIconProps, PropsDefinition<FontAwesomeIconProps>>
export const FontAwesomeLayers: FunctionalComponentOptions<FontAwesomeLayersProps, PropsDefinition<FontAwesomeLayersProps>>
export const FontAwesomeLayersText: FunctionalComponentOptions<FontAwesomeLayersTextProps, PropsDefinition<FontAwesomeLayersTextProps>>

0 comments on commit 2251a3d

Please # to comment.