diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-03-02 18:40:43 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-03-02 18:40:43 +0900 |
| commit | dad915e5221d99ceeb7b35b3ca1cbbf52a02f0f3 (patch) | |
| tree | c5c4929517170ab187c0cc459e27f885ca1baca4 /packages/frontend/src/const.ts | |
| parent | refactor(frontend): add explicit `Promise<void>` return types in `os.ts` (#10... (diff) | |
| download | sharkey-dad915e5221d99ceeb7b35b3ca1cbbf52a02f0f3.tar.gz sharkey-dad915e5221d99ceeb7b35b3ca1cbbf52a02f0f3.tar.bz2 sharkey-dad915e5221d99ceeb7b35b3ca1cbbf52a02f0f3.zip | |
enhance(client): provide sticktyFooter
Diffstat (limited to 'packages/frontend/src/const.ts')
| -rw-r--r-- | packages/frontend/src/const.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/frontend/src/const.ts b/packages/frontend/src/const.ts index 1d44786a63..da3ae89c37 100644 --- a/packages/frontend/src/const.ts +++ b/packages/frontend/src/const.ts @@ -46,3 +46,9 @@ https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Containers export const notificationTypes = ['follow', 'mention', 'reply', 'renote', 'quote', 'reaction', 'pollEnded', 'receiveFollowRequest', 'followRequestAccepted', 'achievementEarned', 'app'] as const; export const obsoleteNotificationTypes = ['pollVote', 'groupInvited'] as const; + +// なんか動かない +//export const CURRENT_STICKY_TOP = Symbol('CURRENT_STICKY_TOP'); +//export const CURRENT_STICKY_BOTTOM = Symbol('CURRENT_STICKY_BOTTOM'); +export const CURRENT_STICKY_TOP = 'CURRENT_STICKY_TOP'; +export const CURRENT_STICKY_BOTTOM = 'CURRENT_STICKY_BOTTOM'; |