UNPKG

423 BTypeScriptView Raw
1export default class UnityProject {
2 private _projectPath;
3 constructor(projectPath: string);
4 readonly projectPath: string;
5 readonly assetsPath: string;
6 private readonly projectPathArgs;
7 createAsync(): Promise<void>;
8 exportPackageAsync(sourcePaths: string[], outputPath: string): Promise<void>;
9 importPackageAsync(packagePath: string): Promise<void>;
10 private verifyProjectExistsAsync();
11}