UNPKG
@tunaiku.npm/embedded-session-management
Version:
latest (0.7.0)
0.7.0
0.6.0
0.5.1-build.1
0.5.0
0.4.0
0.4.0-build.2
0.4.0-build.1
0.3.0-build.4
0.3.0-build.2
0.3.0-build.1
0.1.0-build.1
0.0.8-build.2
0.0.8-build.1
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Session management
bitbucket.org/tunaiku/embedded-session-management
@tunaiku.npm/embedded-session-management
/
dist
/
auth
/
session
/
redirection.d.ts
9 lines
(8 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Schema
,
Entity
}
from
"redis-om"
;
declare
class
Redirection
extends
Entity
{
url
:
string
;
strategy
:
string
;
createdAt
:
Date
; }
declare
const
redirectionSchema
:
Schema
<
Redirection
>;
export
{
Redirection
, redirectionSchema };