Skip to content
Snippets Groups Projects
Commit f9aa38ee authored by syuilo's avatar syuilo
Browse files

WIP: Add user interface

parent ffec932c
No related merge requests found
......@@ -18,3 +18,7 @@ export function validatePassword(password: string): boolean {
export function isValidBirthday(birthday: string): boolean {
return typeof birthday == 'string' && /^([0-9]{4})\-([0-9]{2})-([0-9]{2})$/.test(birthday);
}
export interface IUser {
name: string;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment