Files
standardnotes-app-web/packages/snjs/lib/Services/Session/Sessions/Session.ts
2022-07-06 14:04:30 +02:00

7 lines
220 B
TypeScript

export abstract class Session {
public abstract canExpire(): boolean
/** Return the token that should be included in the header of authorized network requests */
public abstract get authorizationValue(): string
}