/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/src/private/testing/fantom/specs/NativeCPUTime.js
24 строки
768 B
Rubén Norte
Move Fantom-related specs to src/private/testing/fantom/specs (#49101)
03 фев 2025, 20:15
03 фев 2025, 20:15
7e12060
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict * @format */ import type {TurboModule} from '../../../../../Libraries/TurboModule/RCTExport'; import * as TurboModuleRegistry from '../../../../../Libraries/TurboModule/TurboModuleRegistry'; /** * This is an internal native module meant to be used for performance * measurements and benchmarks. It is not meant to be used in production. */ export interface Spec extends TurboModule { +getCPUTimeNanos: () => number; +hasAccurateCPUTimeNanosForBenchmarks: () => boolean; } export default (TurboModuleRegistry.getEnforcing<Spec>('CPUTimeCxx'): Spec);