* feat: add sending user requests to process * fix(snjs): yarn lock * fix(snjs): imports * fix: specs
10 lines
303 B
TypeScript
10 lines
303 B
TypeScript
import { AnyKeyParamsContent } from '@standardnotes/common'
|
|
import { RootKeyInterface } from '@standardnotes/models'
|
|
import { HttpResponse } from '@standardnotes/responses'
|
|
|
|
export type SessionManagerResponse = {
|
|
response: HttpResponse
|
|
rootKey?: RootKeyInterface
|
|
keyParams?: AnyKeyParamsContent
|
|
}
|