1
0
mirror of https://github.com/flarum/core.git synced 2025-08-21 07:41:49 +02:00

Bundled output for commit 4982efed3a

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

[skip ci]
This commit is contained in:
flarum-bot
2021-10-27 20:17:11 +00:00
parent 4982efed3a
commit db6c8b8774
9 changed files with 167 additions and 13 deletions

View File

@@ -41,8 +41,8 @@ declare class PostStreamState {
* @type {Boolean}
*/
forceUpdateScrubber: boolean;
loadNext: any;
loadPrevious: any;
loadNext: throttle<() => void>;
loadPrevious: throttle<() => void>;
/**
* Update the stream so that it loads and includes the latest posts in the
* discussion, if the end is being viewed.
@@ -184,3 +184,4 @@ declare class PostStreamState {
declare namespace PostStreamState {
const loadCount: number;
}
import { throttle } from "throttle-debounce";