smartsession/ts/smartsession.classes.smartsession.ts

17 lines
332 B
TypeScript
Raw Normal View History

2018-08-17 21:23:49 +00:00
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 ''
}
}