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
50
node_modules/@trapezedev/project/dist/definitions.d.ts
generated
vendored
Normal file
50
node_modules/@trapezedev/project/dist/definitions.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
/**
|
||||
* ios definitions
|
||||
*/
|
||||
export interface IosPbxProject {
|
||||
writeSync: () => string;
|
||||
[key: string]: any;
|
||||
}
|
||||
export interface IosEntitlements {
|
||||
[key: string]: any;
|
||||
}
|
||||
export interface IosBuildSettings {
|
||||
[key: string]: any;
|
||||
}
|
||||
export interface IosTarget {
|
||||
id: string;
|
||||
name: string;
|
||||
productName: string;
|
||||
productType: string;
|
||||
buildConfigurations: IosTargetBuildConfiguration[];
|
||||
[key: string]: any;
|
||||
}
|
||||
export interface IosTargetBuildConfiguration {
|
||||
name: string;
|
||||
buildSettings: IosBuildSettings;
|
||||
}
|
||||
export type IosFramework = string;
|
||||
export interface IosFrameworkOpts {
|
||||
customFramework?: boolean;
|
||||
/**
|
||||
* Default: true
|
||||
*/
|
||||
link?: boolean;
|
||||
/**
|
||||
* Whether to embed the framework. Default: false
|
||||
*/
|
||||
embed?: boolean;
|
||||
}
|
||||
export type IosBuildName = 'Debug' | 'Release' | string;
|
||||
export type IosTargetName = string;
|
||||
export type IosProjectName = string;
|
||||
/**
|
||||
* Android definitions
|
||||
*/
|
||||
export type AndroidResDir = 'anim' | 'animator' | 'color' | 'drawable' | 'font' | 'interpolator' | 'layout' | 'menu' | 'mipmap' | 'navigation' | 'raw' | 'transition' | 'values' | 'xml' | string;
|
||||
export declare const enum AndroidGradleInjectType {
|
||||
Infer = "infer",
|
||||
Method = "method",
|
||||
Variable = "variable"
|
||||
}
|
||||
//# sourceMappingURL=definitions.d.ts.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue