7 lines
220 B
TypeScript
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
|
|
}
|