sp-dev-fx-webparts/samples/react-questions-and-answers/src/models/IBaseItem.ts

14 lines
337 B
TypeScript

import { IPersonaProps } from 'office-ui-fabric-react/lib/Persona';
export interface IBaseItem {
id?: number;
title?: string;
author?: IPersonaProps | null;
editor?: IPersonaProps | null;
createdDate?: Date | null;
modifiedDate?: Date | null;
etag?: string | null;
uiErrors?: Map<string, string>;
}