1
0
mirror of https://github.com/pnp/sp-dev-fx-webparts.git synced 2025-03-05 19:29:48 +00:00

8 lines
140 B
TypeScript
Raw Normal View History

export interface IActivity {
name: string;
date: string;
actorId: number;
actorName?: string;
actorPhotoUrl?: string;
}