GT2/Ejectable/node_modules/@expo/configure-splash-screen/build/android/Paths.d.ts
2021-08-16 00:14:59 +00:00

8 lines
375 B
TypeScript

export interface ProjectFile<L extends string = string> {
path: string;
language: L;
contents: string;
}
export declare function assert(value: any, message?: string | Error): asserts value;
export declare type ApplicationProjectFile = ProjectFile<'java' | 'kt'>;
export declare function getMainActivityAsync(projectRoot: string): Promise<ApplicationProjectFile>;