6 lines
57 B
TypeScript
6 lines
57 B
TypeScript
|
|
export type Role = {
|
||
|
|
id: number,
|
||
|
|
name: string
|
||
|
|
}
|
||
|
|
|