@mikezimm/npmfunctions
Version:
Functions used in my SPFx webparts
14 lines (13 loc) • 708 B
TypeScript
/**
* Used for Expandoramic viewing and
*/
export declare type IFPSBasicToggleSetting = 'skip' | true | false;
/**
* Deprecated... replace with IEveryoneAudience
*/
/**
* NOTE: ISupportedHost may need to be deprecated and should be renamed as IPageLayoutType.
* Supported hosts is the property name in the manifest.json but the values for that do not match up to the PageLayoutType
*/
export declare type ISupportedHost = "SharePointWebPart" | "TeamsPersonalApp" | "TeamsTab" | "SharePointFullPage" | "SingleWebPartAppPageLayout";
export declare type IPageLayoutType = "SharePointWebPart" | "TeamsPersonalApp" | "TeamsTab" | "SharePointFullPage" | "SingleWebPartAppPageLayout" | "Home";