sp-dev-fx-webparts/samples/react-modern-organization-c.../src/Entities/IUserInfo.ts

11 lines
230 B
TypeScript

import { IUser } from "./IUser";
import { IUserPresence } from "./IUserPresence";
export interface IUserInfo extends IUser {
title:string;
pictureUrl?: string;
userUrl?:string;
presence?: IUserPresence;
id?:string;
}