@raona/sp
Version:
Raona utilities to work with Sharepoint using pnp/sp
17 lines (16 loc) • 404 B
TypeScript
import { TypedHash } from "../TypedHash";
export interface RelativeFile {
ServerRelativeUrl: string;
/**
* Just for items that are part of the office suit
*/
LinkingUrl?: string;
/**
* Sharepoint url to find the icon as 16x16 image
*/
iconUrl?: string;
/**
* All List item fields expanded
*/
ListItemAllFields?: TypedHash<any>;
}