sp-rest-proxy
Version:
SharePoint REST API Proxy for Node.js and Express local serve
8 lines (7 loc) • 443 B
TypeScript
export declare const generateGuid: () => string;
export declare const checkNestedProperties: (object: unknown, ...args: string[]) => boolean;
export declare const getCaseInsensitiveProp: (object: {
[key: string]: unknown;
}, propertyName: string) => unknown;
export declare const trimMultiline: (multiline: string) => string;
export declare const waitForCondition: (cond: () => boolean, timeout?: number, tries?: number) => Promise<void>;