UNPKG

@raona/sp

Version:

Raona utilities to work with Sharepoint using pnp/sp

12 lines (11 loc) 290 B
import { Nullable } from './Nullable'; import { TypedHash } from './TypedHash'; export interface FileBuffer { name: string; data: Nullable<ArrayBuffer>; size: number; type: string; lastModified: number; metadata?: TypedHash<any>; file: File | null; }