10 lines
124 B
TypeScript
10 lines
124 B
TypeScript
interface Staff {
|
|
comment: string;
|
|
email: string;
|
|
name: string;
|
|
tag: number;
|
|
userid: string;
|
|
}
|
|
|
|
export { Staff };
|