smartsession/ts/smartsession.classes.smartsession.ts
2018-08-17 23:23:49 +02:00

17 lines
332 B
TypeScript

import * as plugins from './smartsession.plugins';
import { } from './smartsession.classes.store';
export class Smartsession {
/**
* registers a new user with a given key and assign
*/
register<T>(uuidArg: string, payloadArg: T): boolean {
return true
}
registerAndGenerateUuid(): string {
return ''
}
}