mirror of
https://github.com/flarum/framework.git
synced 2024-11-22 07:21:49 +08:00
Bundled output for commit a3333320d7
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
This commit is contained in:
parent
a3333320d7
commit
57879974ca
2
extensions/flags/js/dist-typings/forum/extend.d.ts
generated
vendored
2
extensions/flags/js/dist-typings/forum/extend.d.ts
generated
vendored
|
@ -1,2 +1,2 @@
|
|||
declare const _default: (import("flarum/common/extenders/Model").default | import("flarum/common/extenders/Routes").default | import("flarum/common/extenders/Store").default)[];
|
||||
declare const _default: (import("flarum/common/extenders/Routes").default | import("flarum/common/extenders/Store").default | import("flarum/common/extenders/Model").default)[];
|
||||
export default _default;
|
||||
|
|
2
extensions/messages/js/dist-typings/forum/extend.d.ts
generated
vendored
2
extensions/messages/js/dist-typings/forum/extend.d.ts
generated
vendored
|
@ -1,2 +1,2 @@
|
|||
declare const _default: (import("flarum/common/extenders/Routes").default | import("flarum/common/extenders/Store").default)[];
|
||||
declare const _default: (import("flarum/common/extenders/Store").default | import("flarum/common/extenders/Routes").default)[];
|
||||
export default _default;
|
||||
|
|
2
extensions/package-manager/js/dist-typings/components/TaskOutputModal.d.ts
generated
vendored
2
extensions/package-manager/js/dist-typings/components/TaskOutputModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../../../framework/core/js/src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../../../../framework/core/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference types="mithril" />
|
||||
/// <reference types="flarum/@types/translator-icu-rich" />
|
||||
import Modal, { IInternalModalAttrs } from 'flarum/common/components/Modal';
|
||||
|
|
2
extensions/package-manager/js/dist-typings/components/WhyNotModal.d.ts
generated
vendored
2
extensions/package-manager/js/dist-typings/components/WhyNotModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../../../framework/core/js/src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../../../../framework/core/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference types="flarum/@types/translator-icu-rich" />
|
||||
import type Mithril from 'mithril';
|
||||
import Modal, { IInternalModalAttrs } from 'flarum/common/components/Modal';
|
||||
|
|
2
extensions/package-manager/js/dist-typings/models/Task.d.ts
generated
vendored
2
extensions/package-manager/js/dist-typings/models/Task.d.ts
generated
vendored
|
@ -1,7 +1,7 @@
|
|||
import Model from 'flarum/common/Model';
|
||||
export type TaskOperations = 'extension_install' | 'extension_remove' | 'extension_update' | 'update_global' | 'update_minor' | 'update_major' | 'update_check' | 'why_not';
|
||||
export default class Task extends Model {
|
||||
status(): "running" | "pending" | "success" | "failure";
|
||||
status(): "pending" | "running" | "failure" | "success";
|
||||
operation(): TaskOperations;
|
||||
command(): string;
|
||||
package(): string;
|
||||
|
|
2
extensions/tags/js/dist-typings/admin/components/EditTagModal.d.ts
generated
vendored
2
extensions/tags/js/dist-typings/admin/components/EditTagModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../../../../framework/core/js/src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../../../../../framework/core/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference types="flarum/@types/translator-icu-rich" />
|
||||
import FormModal, { IFormModalAttrs } from 'flarum/common/components/FormModal';
|
||||
import ItemList from 'flarum/common/utils/ItemList';
|
||||
|
|
2
extensions/tags/js/dist-typings/forum/components/DiscussionTaggedPost.d.ts
generated
vendored
2
extensions/tags/js/dist-typings/forum/components/DiscussionTaggedPost.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../../../../framework/core/js/src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../../../../../framework/core/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference types="flarum/@types/translator-icu-rich" />
|
||||
export default class DiscussionTaggedPost extends EventPost {
|
||||
static initAttrs(attrs: any): void;
|
||||
|
|
2
extensions/tags/js/dist-typings/forum/extend.d.ts
generated
vendored
2
extensions/tags/js/dist-typings/forum/extend.d.ts
generated
vendored
|
@ -1,2 +1,2 @@
|
|||
declare const _default: (import("flarum/common/extenders/Model").default | import("flarum/common/extenders/PostTypes").default | import("flarum/common/extenders/Routes").default | import("flarum/common/extenders/Store").default | import("flarum/common/extenders/Search").default)[];
|
||||
declare const _default: (import("flarum/common/extenders/Store").default | import("flarum/common/extenders/Search").default | import("flarum/common/extenders/Routes").default | import("flarum/common/extenders/PostTypes").default | import("flarum/common/extenders/Model").default)[];
|
||||
export default _default;
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/AdvancedPage.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/AdvancedPage.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import AdminPage from './AdminPage';
|
||||
import type { IPageAttrs } from '../../common/components/Page';
|
||||
import type Mithril from 'mithril';
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/AppearancePage.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/AppearancePage.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import AdminPage from './AdminPage';
|
||||
import ItemList from '../../common/utils/ItemList';
|
||||
import type Mithril from 'mithril';
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/BasicsPage.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/BasicsPage.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import ItemList from '../../common/utils/ItemList';
|
||||
import AdminPage from './AdminPage';
|
||||
import type { IPageAttrs } from '../../common/components/Page';
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/CreateUserModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/CreateUserModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import FormModal, { IFormModalAttrs } from '../../common/components/FormModal';
|
||||
import ItemList from '../../common/utils/ItemList';
|
||||
import Stream from '../../common/utils/Stream';
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/DashboardPage.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/DashboardPage.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import ItemList from '../../common/utils/ItemList';
|
||||
import AdminPage from './AdminPage';
|
||||
import type { Children } from 'mithril';
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/EditCustomCssModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/EditCustomCssModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
/// <reference types="mithril" />
|
||||
import SettingsModal from './SettingsModal';
|
||||
export default class EditCustomCssModal extends SettingsModal {
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/EditCustomFooterModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/EditCustomFooterModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
/// <reference types="mithril" />
|
||||
import SettingsModal from './SettingsModal';
|
||||
export default class EditCustomFooterModal extends SettingsModal {
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/EditCustomHeaderModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/EditCustomHeaderModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
/// <reference types="mithril" />
|
||||
import SettingsModal from './SettingsModal';
|
||||
export default class EditCustomHeaderModal extends SettingsModal {
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/LoadingModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/LoadingModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import Modal, { IInternalModalAttrs } from '../../common/components/Modal';
|
||||
export interface ILoadingModalAttrs extends IInternalModalAttrs {
|
||||
}
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/MailPage.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/MailPage.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import AdminPage from './AdminPage';
|
||||
import type { IPageAttrs } from '../../common/components/Page';
|
||||
import type { AlertIdentifier } from '../../common/states/AlertManagerState';
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/PermissionsPage.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/PermissionsPage.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
/// <reference types="mithril" />
|
||||
import AdminPage from './AdminPage';
|
||||
export default class PermissionsPage extends AdminPage {
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/ReadmeModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/ReadmeModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import Modal, { IInternalModalAttrs } from '../../common/components/Modal';
|
||||
import ExtensionReadme from '../models/ExtensionReadme';
|
||||
import type Mithril from 'mithril';
|
||||
|
|
2
framework/core/js/dist-typings/admin/components/UserListPage.d.ts
generated
vendored
2
framework/core/js/dist-typings/admin/components/UserListPage.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import Mithril from 'mithril';
|
||||
import type User from '../../common/models/User';
|
||||
import type { IPageAttrs } from '../../common/components/Page';
|
||||
|
|
2
framework/core/js/dist-typings/common/components/EditUserModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/common/components/EditUserModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import FormModal, { IFormModalAttrs } from '../../common/components/FormModal';
|
||||
import ItemList from '../utils/ItemList';
|
||||
import Stream from '../utils/Stream';
|
||||
|
|
2
framework/core/js/dist-typings/common/utils/ScrollListener.d.ts
generated
vendored
2
framework/core/js/dist-typings/common/utils/ScrollListener.d.ts
generated
vendored
|
@ -12,7 +12,7 @@ export default class ScrollListener {
|
|||
constructor(callback: (top: number) => void, element?: Window | Element);
|
||||
callback: (top: number) => void;
|
||||
ticking: boolean;
|
||||
element: Element | Window;
|
||||
element: Window | Element;
|
||||
/**
|
||||
* On each animation frame, as long as the listener is active, run the
|
||||
* `update` method.
|
||||
|
|
2
framework/core/js/dist-typings/forum/components/ChangeEmailModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/forum/components/ChangeEmailModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import FormModal, { IFormModalAttrs } from '../../common/components/FormModal';
|
||||
import Stream from '../../common/utils/Stream';
|
||||
import type Mithril from 'mithril';
|
||||
|
|
2
framework/core/js/dist-typings/forum/components/ChangePasswordModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/forum/components/ChangePasswordModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import FormModal, { IFormModalAttrs } from '../../common/components/FormModal';
|
||||
import Mithril from 'mithril';
|
||||
import ItemList from '../../common/utils/ItemList';
|
||||
|
|
2
framework/core/js/dist-typings/forum/components/DiscussionRenamedNotification.d.ts
generated
vendored
2
framework/core/js/dist-typings/forum/components/DiscussionRenamedNotification.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import Notification from './Notification';
|
||||
/**
|
||||
* The `DiscussionRenamedNotification` component displays a notification which
|
||||
|
|
2
framework/core/js/dist-typings/forum/components/ForgotPasswordModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/forum/components/ForgotPasswordModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import FormModal, { IFormModalAttrs } from '../../common/components/FormModal';
|
||||
import Stream from '../../common/utils/Stream';
|
||||
import Mithril from 'mithril';
|
||||
|
|
2
framework/core/js/dist-typings/forum/components/LogInModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/forum/components/LogInModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import FormModal, { IFormModalAttrs } from '../../common/components/FormModal';
|
||||
import ItemList from '../../common/utils/ItemList';
|
||||
import Stream from '../../common/utils/Stream';
|
||||
|
|
2
framework/core/js/dist-typings/forum/components/RenameDiscussionModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/forum/components/RenameDiscussionModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import FormModal, { IFormModalAttrs } from '../../common/components/FormModal';
|
||||
import Stream from '../../common/utils/Stream';
|
||||
import Mithril from 'mithril';
|
||||
|
|
2
framework/core/js/dist-typings/forum/components/SignUpModal.d.ts
generated
vendored
2
framework/core/js/dist-typings/forum/components/SignUpModal.d.ts
generated
vendored
|
@ -1,4 +1,4 @@
|
|||
/// <reference path="../../../src/@types/translator-icu-rich.d.ts" />
|
||||
/// <reference path="../../@types/translator-icu-rich.d.ts" />
|
||||
import FormModal, { IFormModalAttrs } from '../../common/components/FormModal';
|
||||
import ItemList from '../../common/utils/ItemList';
|
||||
import Stream from '../../common/utils/Stream';
|
||||
|
|
Loading…
Reference in New Issue
Block a user