7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
import { User } from '@microsoft/microsoft-graph-types';
|
|
|
|
export interface AppContextState {
|
|
featureFlags: { key: string; enabled: boolean }[];
|
|
userProfile: User;
|
|
}
|