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>;
}
