Bundled output for commit e7fc29a59f7538b211fc8b5ac65896dc2668f8fb

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

[skip ci]
This commit is contained in:
flarum-bot 2023-02-08 21:09:22 +00:00
parent e7fc29a59f
commit 675cdab658
8 changed files with 10 additions and 10 deletions

View File

@ -1,2 +1,2 @@
declare const _default: any[];
declare const _default: (import("flarum/common/extenders/Model").default | import("flarum/common/extenders/Routes").default | import("flarum/common/extenders/Store").default)[];
export default _default;

View File

@ -1,2 +1,2 @@
declare const _default: any[];
declare const _default: import("flarum/common/extenders/Store").default[];
export default _default;

View File

@ -1,2 +1,2 @@
declare const _default: any[];
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)[];
export default _default;

View File

@ -1,5 +1,6 @@
import EditorDriverInterface, { EditorDriverParams } from './EditorDriverInterface';
import ItemList from './ItemList';
import type EditorDriverInterface from './EditorDriverInterface';
import { type EditorDriverParams } from './EditorDriverInterface';
export default class BasicEditorDriver implements EditorDriverInterface {
el: HTMLTextAreaElement;
constructor(dom: HTMLElement, params: EditorDriverParams);

View File

@ -15,7 +15,7 @@ export default class ComposerPostPreview extends Component<import("../../common/
constructor();
view(): JSX.Element;
oncreate(vnode: any): void;
updateInterval: NodeJS.Timeout | undefined;
updateInterval: NodeJS.Timer | undefined;
onremove(vnode: any): void;
}
import Component from "../../common/Component";

View File

@ -27,9 +27,9 @@ declare class ComposerState {
/**
* A reference to the text editor that allows text manipulation.
*
* @type {EditorDriverInterface|null}
* @type {import('../../common/utils/EditorDriverInterface')|null}
*/
editor: EditorDriverInterface | null;
editor: typeof import("../../common/utils/EditorDriverInterface") | null;
/**
* Load a content component into the composer.
*
@ -151,5 +151,4 @@ declare namespace ComposerState {
const FULLSCREEN: string;
}
}
import EditorDriverInterface from "../../common/utils/EditorDriverInterface";
import Stream from "../../common/utils/Stream";

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long