2020-11-10 11:07:00 -05:00
|
|
|
declare type HomepageObject = {
|
|
|
|
icon: string,
|
|
|
|
link: string,
|
|
|
|
options: any,
|
|
|
|
route: string,
|
|
|
|
title: string,
|
2021-07-07 14:21:11 -04:00
|
|
|
};
|
2020-11-10 11:07:00 -05:00
|
|
|
|
|
|
|
declare type HomepageData = {
|
|
|
|
[string]: HomepageObject,
|
|
|
|
default: any => any,
|
2021-07-07 14:21:11 -04:00
|
|
|
};
|
2020-11-10 11:07:00 -05:00
|
|
|
|
|
|
|
declare type RowDataItem = {
|
|
|
|
title: any,
|
|
|
|
link?: string,
|
|
|
|
help?: any,
|
|
|
|
icon?: string,
|
|
|
|
extra?: any,
|
2021-07-22 22:15:45 -04:00
|
|
|
pinnedUrls?: Array<string>,
|
2020-11-10 11:07:00 -05:00
|
|
|
options?: {
|
|
|
|
channelIds?: Array<string>,
|
2021-07-07 14:21:11 -04:00
|
|
|
limitClaimsPerChannel?: number,
|
2021-07-12 20:14:43 -04:00
|
|
|
pageSize?: number,
|
2020-11-10 11:07:00 -05:00
|
|
|
},
|
|
|
|
route?: string,
|
|
|
|
hideForUnauth?: boolean,
|
|
|
|
};
|