You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
357 B
10 lines
357 B
import { ExpoConfig } from '@expo/config';
|
|
/**
|
|
* Extract a template app to a given file path and clean up any properties left over from npm to
|
|
* prepare it for usage.
|
|
*/
|
|
export declare function extractAndPrepareTemplateAppAsync(npmPackageName: string, projectRoot: string, config: {
|
|
expo: Partial<ExpoConfig>;
|
|
name?: string;
|
|
}): Promise<string>;
|