@react-native/core-cli-utils
Version:
React Native CLI library for Frameworks to build on
34 lines (32 loc) • 898 B
TypeScript
/**
* 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.
*
*
* @format
*/
export declare const android: {
ANDROID_NDK: ">= 23.x";
ANDROID_SDK: ">= 33.x";
};
export declare type android = typeof android;
export declare const apple: { COCOAPODS: ">= 1.10.0"; XCODE: ">= 12.x" };
export declare type apple = typeof apple;
export declare const common: {
BUN: ">= 1.0.0";
JAVA: ">= 17 <= 20";
NODE_JS: ">= 18";
NPM: ">= 4.x";
RUBY: ">= 2.6.10";
YARN: ">= 1.10.x";
};
export declare type common = typeof common;
export declare const all: Omit<
typeof apple,
keyof typeof android | keyof typeof common | keyof {}
> &
Omit<typeof android, keyof typeof common | keyof {}> &
Omit<typeof common, keyof {}> & {};
export declare type all = typeof all;