Files
ThreadNet-Web/src/PageTypes.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
457 B
TypeScript
Raw Normal View History

2016-11-03 18:42:26 +00:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2017-06-28 13:56:18 +01:00
Copyright 2017 Vector Creations Ltd
2024-09-09 14:57:16 +01:00
Copyright 2015, 2016 OpenMarket Ltd
2016-11-03 18:42:26 +00:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2016-11-03 18:42:26 +00:00
*/
/** The types of page which can be shown by the LoggedInView */
2021-09-27 12:40:34 +02:00
enum PageType {
HomePage = "home_page",
RoomView = "room_view",
UserView = "user_view",
}
export default PageType;