@raona/sp
Version:
Raona utilities to work with Sharepoint using pnp/sp
25 lines (24 loc) • 623 B
TypeScript
import { Nullable } from '../Nullable';
export interface SPFile {
CheckInComment: string;
CheckOutType: number;
ContentTag: string;
CustomizedPageStatus: number;
ETag: string;
Exists: boolean;
IrmEnabled: boolean;
Length: string;
Level: number;
LinkingUri: Nullable<string>;
LinkingUrl: string;
MajorVersion: number;
MinorVersion: number;
Name: string;
ServerRelativeUrl: string;
TimeCreated: string;
TimeLastModified: string;
Title: Nullable<string>;
UIVersion: number;
UIVersionLabel: string;
UniqueId: string;
}