@nx/react-native
Version:
9 lines (8 loc) • 547 B
TypeScript
/**
* This function normalizes the options passed in to the Nx and returns an array of strings that can be passed to the React Native CLI.
* @param options Nx options
* @param optionKeysToIgnore Keys to ignore
* @param optionKeysInCamelName Keys that are in camel case. Most react native cli options are in kebab case, but some are in camel case.
* @returns options that can be passed to the React Native CLI
*/
export declare function getCliOptions<T>(options: T, optionKeysToIgnore?: string[], optionKeysInCamelName?: string[]): string[];