@kwiz/common
Version:
KWIZ common utilities and helpers for M365 platform
6 lines (5 loc) • 474 B
TypeScript
import { IContextWebInformation } from "../../types/sharepoint.types";
export declare function getFormDigest(serverRelativeWebUrl?: string, async?: true): Promise<string | null>;
export declare function getFormDigest(serverRelativeWebUrl?: string, async?: false): string | null;
export declare function GetContextWebInformationSync(siteUrl: string): IContextWebInformation;
export declare function GetContextWebInformation(siteUrl: string): Promise<IContextWebInformation>;