UNPKG

@pnp/spfx-controls-react

Version:

Reusable React controls for SharePoint Framework solutions

12 lines 383 B
import { BaseComponentContext } from '@microsoft/sp-component-base'; export interface IUploadAttachmentProps { listId: string; itemId?: number; className?: string; webUrl?: string; disabled?: boolean; context: BaseComponentContext; fireUpload?: boolean; onAttachmentUpload: (file?: File) => void; } //# sourceMappingURL=IUploadAttachmentProps.d.ts.map