12 lines
170 B
TypeScript
12 lines
170 B
TypeScript
export interface UserData {
|
|
id: number
|
|
username: string
|
|
roles: string[]
|
|
}
|
|
|
|
export type UserPayload = {
|
|
username?: string
|
|
password?: string
|
|
roles?: string[]
|
|
}
|