Bundled output for commit 321020ab83

Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
This commit is contained in:
flarum-bot 2024-10-19 16:48:34 +00:00
parent 321020ab83
commit 8742790980
4 changed files with 12 additions and 3 deletions

View File

@ -21,6 +21,6 @@ export default class ExternalExtension extends Model {
downloads: () => number;
readonly installed = false;
isSupported(): boolean;
isStable(): boolean;
isProductionReady(): boolean;
toLocalExtension(): Extension;
}

View File

@ -0,0 +1,9 @@
export declare enum VersionStability {
Stable = "stable",
Alpha = "alpha",
Beta = "beta",
RC = "rc",
Dev = "dev"
}
export declare function isProductionReady(version: string): boolean;
export declare function stability(version: string): VersionStability;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long