Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Commit 1fd18f0

Browse files
committed
fix: missing shim
1 parent ff7afdc commit 1fd18f0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

js/src/@types/shims.d.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,18 @@ declare module 'flarum/tags/admin/components/EditTagModal' {
2626
export default interface EditTagModal {
2727
richExcerpts: Stream<boolean>;
2828
excerptLength: Stream<number>;
29+
submitData(): {
30+
excerptLength: any;
31+
richExcerpts: any;
32+
name: string;
33+
slug: string;
34+
description: string;
35+
color: string;
36+
icon: string;
37+
isHidden: boolean;
38+
primary: boolean;
39+
richExcerpts: boolean;
40+
excerptLength: number;
41+
};
2942
}
3043
}

0 commit comments

Comments
 (0)