27 lines
610 B
JavaScript
27 lines
610 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
import ReactSharedInternals from 'shared/ReactSharedInternals';
|
|
|
|
const {ReactCurrentBatchConfig} = ReactSharedInternals;
|
|
|
|
export type SuspenseConfig = {|
|
|
timeoutMs: number,
|
|
busyDelayMs?: number,
|
|
busyMinDurationMs?: number,
|
|
|};
|
|
|
|
export type TimeoutConfig = {|
|
|
timeoutMs: number,
|
|
|};
|
|
|
|
export function requestCurrentSuspenseConfig(): null | SuspenseConfig {
|
|
return ReactCurrentBatchConfig.suspense;
|
|
}
|