1
0
mirror of https://github.com/flarum/core.git synced 2025-08-16 05:14:20 +02:00

Bundled output for commit f8232b9c1b

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

[skip ci]
This commit is contained in:
flarum-bot
2021-10-30 22:46:26 +00:00
parent f8232b9c1b
commit 823c337c1e
13 changed files with 218 additions and 140 deletions

View File

@@ -1,4 +1,3 @@
/// <reference types="mithril" />
import DefaultResolver from '../../common/resolvers/DefaultResolver';
/**
* A custom route resolver for DiscussionPage that generates the same key to all posts
@@ -19,6 +18,6 @@ export default class DiscussionPageResolver extends DefaultResolver {
* @inheritdoc
*/
makeKey(): string;
onmatch(args: any, requestedPath: any, route: any): import("mithril").Component<{}, {}>;
render(vnode: any): any[];
onmatch(args: any, requestedPath: any, route: any): any;
render(vnode: any): any;
}