mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 12:20:38 +01:00
22 lines
505 B
JavaScript
22 lines
505 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.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
export * from './src/Scheduler';
|
|
|
|
export {
|
|
unstable_flushAllWithoutAsserting,
|
|
unstable_flushNumberOfYields,
|
|
unstable_flushExpired,
|
|
unstable_clearYields,
|
|
unstable_flushUntilNextPaint,
|
|
unstable_flushAll,
|
|
unstable_yieldValue,
|
|
unstable_advanceTime,
|
|
} from './src/SchedulerHostConfig.js';
|