interface SessionStoreRe-exportimport { type SessionStore } from "https://deno.land/x/alosaur@v0.30.0/security.ts"; Store for sessions Methodsinit(): Promise<void>Initialize this store on start application exist(sid: string): Promise<boolean>Check exist SessionId in store create(sid: string): Promise<void>Create SessionId in store delete(sid: string): Promise<void>Delete Session from store get(sid: string): Promise<any>Get object value by Session setValue(sid: string,key: string,value: any,): Promise<void>getValue(sid: string, key: string): Promise<any>Returns value by key in store clear(): Promise<void>Clear all store