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
18
node_modules/@capacitor/assets/dist/error.d.ts
generated
vendored
Normal file
18
node_modules/@capacitor/assets/dist/error.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
export declare abstract class BaseError extends Error {
|
||||
readonly message: string;
|
||||
abstract readonly name: string;
|
||||
abstract readonly code: string;
|
||||
constructor(message: string);
|
||||
toString(): string;
|
||||
toJSON(): {
|
||||
[key: string]: any;
|
||||
};
|
||||
}
|
||||
export declare class BadProjectError extends BaseError {
|
||||
readonly name = "BadProjectError";
|
||||
readonly code = "BAD_PROJECT";
|
||||
}
|
||||
export declare class BadPipelineError extends BaseError {
|
||||
readonly name = "BadPipelineError";
|
||||
readonly code = "BAD_SHARP_PIPELINE";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue