6 lines
210 B
Plaintext
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;
|