mirror of
https://github.com/flarum/core.git
synced 2025-08-17 22:01:44 +02:00
Bundled output for commit 0107c96fb7
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
This commit is contained in:
26
extensions/package-manager/js/dist-typings/models/ExternalExtension.d.ts
generated
vendored
Normal file
26
extensions/package-manager/js/dist-typings/models/ExternalExtension.d.ts
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import Model from 'flarum/common/Model';
|
||||
import type { Extension } from 'flarum/admin/AdminApplication';
|
||||
export default class ExternalExtension extends Model {
|
||||
extensionId: () => string;
|
||||
name: () => string;
|
||||
title: () => string;
|
||||
description: () => string;
|
||||
iconUrl: () => string;
|
||||
icon: () => {
|
||||
[key: string]: string;
|
||||
name: string;
|
||||
};
|
||||
highestVersion: () => string;
|
||||
httpUri: () => string;
|
||||
discussUri: () => string;
|
||||
vendor: () => string;
|
||||
isPremium: () => boolean;
|
||||
isLocale: () => boolean;
|
||||
locale: () => string;
|
||||
latestFlarumVersionSupported: () => string;
|
||||
downloads: () => number;
|
||||
readonly installed = false;
|
||||
isSupported(): boolean;
|
||||
isStable(): boolean;
|
||||
toLocalExtension(): Extension;
|
||||
}
|
Reference in New Issue
Block a user