8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
import { ObjectWithId } from './object-with-id'
|
|
|
|
export interface User extends ObjectWithId {
|
|
username: string
|
|
firstname: string
|
|
lastname: string
|
|
}
|