9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
|
import UserFakeDataEntry from "./UserFakeDataEntry";
|
||
|
|
||
|
export default interface UserJSONEntry extends UserFakeDataEntry {
|
||
|
net_worth: number;
|
||
|
shares: number;
|
||
|
avatar_url: string;
|
||
|
rank: number;
|
||
|
}
|