mobx
Version:
Simple, scalable state management.
9 lines (8 loc) • 357 B
TypeScript
/**
* During a transaction no views are updated until the end of the transaction.
* The transaction will be run synchronously nonetheless.
*
* @param action a function that updates some reactive state
* @returns any value that was returned by the 'action' parameter.
*/
export declare function transaction<T>(action: () => T, thisArg?: undefined): T;