Skip to content

Commit 0edf7b0

Browse files
committed
Bundled output for commit f830632
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
1 parent f830632 commit 0edf7b0

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
declare const optionProviders: Array<(section: string) => Record<string, string>>;
2+
export { optionProviders };
3+
/**
4+
* Register a provider function that contributes options to the following page dropdown.
5+
* The provider will be called with a section name (e.g., "admin.settings", "forum.index_filter")
6+
* and should return an object mapping option keys to translated labels.
7+
*/
8+
export default function addFollowingPageOption(provider: (section: string) => Record<string, string>): void;
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
type FollowingPageOptions = {
22
[key: string]: string | any[];
33
};
4-
export declare function addFollowingPageOption(provider: (section: string) => Record<string, string>): void;
54
export default function followingPageOptions(section: string): FollowingPageOptions;
65
export {};

js/dist/admin.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/admin.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)