UNPKG

wetrade-design

Version:

一款多语言支持Vue3的UI框架

7 lines (6 loc) 262 B
import type { Ref } from 'vue'; export declare type Updater<State> = (prev: State) => State; /** * Execute code before next frame but async */ export declare function useLayoutState<State>(defaultState: State): [Ref<State>, (updater: Updater<State>) => void];