Interface representing the props for the PaperView component.

IPaperViewProps

interface IDropAreaProps {
    component?: any;
    onDropped?: (files: File[]) => void;
    outlinePaper?: boolean;
    transparentPaper?: boolean;
    [key: string]: PaperProps;
    [key: number]: PaperProps;
    [key: symbol]: PaperProps;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: PaperProps
  • [key: number]: PaperProps
  • [key: symbol]: PaperProps

Properties

component?: any
onDropped?: (files: File[]) => void
outlinePaper?: boolean
transparentPaper?: boolean