forked from olcxjas-softworks/LarpixClient
Add capacitorjs runtime
This commit is contained in:
parent
d0ece489ee
commit
f90c0e6c40
8362 changed files with 1502407 additions and 1 deletions
19
node_modules/@trapezedev/project/dist/project.d.ts
generated
vendored
Normal file
19
node_modules/@trapezedev/project/dist/project.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { AndroidProject } from './android/project';
|
||||
import { MobileProjectConfig } from './config';
|
||||
import { Framework } from './frameworks';
|
||||
import { IosProject } from './ios/project';
|
||||
import { VFS } from './vfs';
|
||||
export declare class MobileProject {
|
||||
projectRoot: string;
|
||||
config: MobileProjectConfig;
|
||||
framework: Framework | null;
|
||||
ios: IosProject | null;
|
||||
android: AndroidProject | null;
|
||||
vfs: VFS;
|
||||
constructor(projectRoot: string, config?: MobileProjectConfig);
|
||||
detectFramework(): Promise<Framework | null>;
|
||||
load(): Promise<void>;
|
||||
commit(): Promise<void>;
|
||||
copyFile(src: string, dest: string): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=project.d.ts.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue