17 lines
332 B
TypeScript
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 ''
|
||
|
}
|
||
|
}
|