mirror of
https://github.com/chenasraf/dotfiles.git
synced 2026-05-17 17:28:07 +00:00
6 lines
81 B
TypeScript
6 lines
81 B
TypeScript
export interface User {
|
|
firstName: string
|
|
lastName: string
|
|
email: string
|
|
}
|