Skip to content

Commit

Permalink
fix(types): AtNavBarProps
Browse files Browse the repository at this point in the history
  • Loading branch information
limichange authored Sep 4, 2018
1 parent 41970a6 commit f331d9a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions @types/nav-bar.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@ import { MouseEvent, ComponentClass } from 'react'
import { BaseEventFunction } from '@tarojs/components/types/common'

export interface AtNavBarProps {
title: string
title?: string

fixed: boolean
fixed?: boolean

color: string
color?: string

leftIconType: string
leftIconType?: string

leftText: string
leftText?: string

rightFirstIconType: string
rightFirstIconType?: string

rightSecondIconType: string
rightSecondIconType?: string

onClickLeftIcon: BaseEventFunction
onClickLeftIcon?: BaseEventFunction

onClickRgIconSt: BaseEventFunction
onClickRgIconSt?: BaseEventFunction

onClickRgIconNd: BaseEventFunction
onClickRgIconNd?: BaseEventFunction
}

declare const AtNavBar: ComponentClass<AtNavBarProps>
Expand Down

0 comments on commit f331d9a

Please sign in to comment.