1
0
mirror of https://github.com/sasjs/server.git synced 2026-06-10 02:20:22 +00:00

feat(session): add SessionController and ExecutionController

This commit is contained in:
Yury Shkoda
2021-10-11 14:16:22 +03:00
parent be2ad36a02
commit 6e0b04a6e5
9 changed files with 266 additions and 58 deletions
+5
View File
@@ -0,0 +1,5 @@
declare namespace NodeJS {
export interface Process {
sessionController?: import('../controllers/session').SessionController
}
}
+7
View File
@@ -0,0 +1,7 @@
export interface Session {
id: string
available: boolean
creationTimeStamp: string
deathTimeStamp: string
path: string
}
+2
View File
@@ -1,3 +1,5 @@
// TODO: uppercase types
export * from './sas'
export * from './request'
export * from './fileTree'
export * from './Session'