1*fe5cfb17STomasz Sapeta/** 2*fe5cfb17STomasz Sapeta * Copyright (c) Meta Platforms, Inc. and affiliates. 3*fe5cfb17STomasz Sapeta * 4*fe5cfb17STomasz Sapeta * This source code is licensed under the MIT license found in the 5*fe5cfb17STomasz Sapeta * LICENSE file in the root directory of this source tree. 6*fe5cfb17STomasz Sapeta * 7*fe5cfb17STomasz Sapeta * @format 8*fe5cfb17STomasz Sapeta */ 9*fe5cfb17STomasz Sapeta 10*fe5cfb17STomasz Sapetaimport {TurboModule} from './RCTExport'; 11*fe5cfb17STomasz Sapeta 12*fe5cfb17STomasz Sapetaexport function get<T extends TurboModule>(name: string): T | null; 13*fe5cfb17STomasz Sapetaexport function getEnforcing<T extends TurboModule>(name: string): T; 14