bpms_site/.svn/pristine/d2/d2843e556962352433e1be2ba1cb06a8bdbc841e.svn-base
2025-11-02 16:38:49 +03:30

6 lines
210 B
Plaintext

import type { ThenableRecord } from './router-reducer-types';
/**
* Read record value or throw Promise if it's not resolved yet.
*/
export declare function readRecordValue<T>(thenable: ThenableRecord<T>): T;