mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2026-05-26 12:38:03 +00:00
6 lines
92 B
TypeScript
6 lines
92 B
TypeScript
import {User} from './user.interface';
|
|
|
|
export interface Users {
|
|
[key: number]: User;
|
|
}
|