ns2-front-module-common
Version:
NS2 common module
19 lines (18 loc) • 422 B
TypeScript
import { RealtorInterface } from "./realtor.interface";
export interface CurrentUserInfoInterface extends RealtorInterface {
is_confirmed: boolean;
roles: Array<{
guid: string;
name: string;
title: string;
description: string;
}>;
token: {
guid: string;
user_guid: string;
expired_at: string;
};
session: {
geo_guid: string;
};
}