2e87b2fd22
Naomi
comment websockets
increase slow mode time to 5 seconds
fix to prevent duplicate comments
update livestream details
fix channel
pin electron boom
fix rebase
prune unused icons
updating meme
updating meme
update livestream for naomi
fix rebase
DigitalCashNetwork
remove electroboom pin
Slavguns
Joel
So he can edit his claims
add streamTypes param to claimTilesDiscover so following section can search for all types of content
fix typo
update meme
fixes
publish page fixes
pending
fix notifications
fix comments finally
fix claim preview
no mature for simplesite
Revert "no mature for simplesite"
This reverts commit 9f89242d85
.
fix livestream preview click
no mature on simple site
try fixing invite page crash
probably needs more changes.
27 lines
466 B
JavaScript
27 lines
466 B
JavaScript
declare type HomepageObject = {
|
|
icon: string,
|
|
link: string,
|
|
options: any,
|
|
route: string,
|
|
title: string,
|
|
};
|
|
|
|
declare type HomepageData = {
|
|
[string]: HomepageObject,
|
|
default: any => any,
|
|
};
|
|
|
|
declare type RowDataItem = {
|
|
title: any,
|
|
link?: string,
|
|
help?: any,
|
|
icon?: string,
|
|
extra?: any,
|
|
options?: {
|
|
channelIds?: Array<string>,
|
|
limitClaimsPerChannel?: number,
|
|
pageSize: number,
|
|
},
|
|
route?: string,
|
|
hideForUnauth?: boolean,
|
|
};
|