mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
30 lines
463 B
TypeScript
30 lines
463 B
TypeScript
import {
|
|
isAllView,
|
|
isBoardView,
|
|
isCatalogView,
|
|
isHomeView,
|
|
isModView,
|
|
isModQueueView,
|
|
isPendingPostView,
|
|
isPostPageView,
|
|
isSettingsView,
|
|
isSubscriptionsView,
|
|
isNotFoundView,
|
|
ParamsType,
|
|
} from './view-utils';
|
|
|
|
export {
|
|
isAllView,
|
|
isBoardView,
|
|
isCatalogView,
|
|
isHomeView,
|
|
isModView,
|
|
isModQueueView,
|
|
isPendingPostView,
|
|
isPostPageView,
|
|
isSettingsView,
|
|
isSubscriptionsView,
|
|
isNotFoundView,
|
|
};
|
|
export type { ParamsType };
|