mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
* BETTERZON-75: Adding backend functions to enable user registration * BETTERZON-75: Adding regex to check email and username
6 lines
92 B
TypeScript
6 lines
92 B
TypeScript
import {User} from './user.interface';
|
|
|
|
export interface Users {
|
|
[key: number]: User;
|
|
}
|