UNPKG

taro-hooks

Version:
6 lines (5 loc) 274 B
import type { PromiseAction, ExcludeOption } from '../type'; type SetTopBarTextOption = ExcludeOption<Taro.setTopBarText.Option>; export type Set = PromiseAction<SetTopBarTextOption['text']>; declare function useTopBarText(text?: string): Set; export default useTopBarText;