Skip to content

Commit

Permalink
fix: missing shim
Browse files Browse the repository at this point in the history
  • Loading branch information
imorland committed Oct 22, 2024
1 parent ff7afdc commit 1fd18f0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions js/src/@types/shims.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,18 @@ declare module 'flarum/tags/admin/components/EditTagModal' {
export default interface EditTagModal {
richExcerpts: Stream<boolean>;
excerptLength: Stream<number>;
submitData(): {
excerptLength: any;
richExcerpts: any;
name: string;
slug: string;
description: string;
color: string;
icon: string;
isHidden: boolean;
primary: boolean;
richExcerpts: boolean;
excerptLength: number;
};
}
}

0 comments on commit 1fd18f0

Please sign in to comment.