UNPKG

@pnp/spfx-controls-react

Version:

Reusable React controls for SharePoint Framework solutions

14 lines 465 B
import { IListItemAttachmentFile } from './IListItemAttachmentFile'; export interface IListItemAttachmentsState { file: IListItemAttachmentFile; hideDialog: boolean; dialogMessage: string; attachments: IListItemAttachmentFile[]; deleteAttachment: boolean; disableButton: boolean; showPlaceHolder: boolean; fireUpload: boolean; filesToUpload?: File[]; itemId?: number; } //# sourceMappingURL=IListItemAttachmentsState.d.ts.map