gd-sprest-def
Version:
TypeScript definition files generated from the $metadata REST endpoint in SharePoint.
72 lines (55 loc) • 2.33 kB
TypeScript
import { Base } from "../../../../";
/*********************************************
* IAppLauncher
**********************************************/
export interface IAppLauncher extends AppLauncherCollections, AppLauncherMethods, Base.IBaseQuery<AppLauncher, IAppLauncherQuery> {
}
/*********************************************
* IAppLauncherCollection
**********************************************/
export interface IAppLauncherCollection extends Base.IBaseResults<AppLauncher> {
done?: (resolve: (value?: Array<AppLauncher>) => void) => void;
}
/*********************************************
* IAppLauncherQueryCollection
**********************************************/
export interface IAppLauncherQueryCollection extends Base.IBaseResults<AppLauncherOData> {
done?: (resolve: (value?: Array<AppLauncherOData>) => void) => void;
}
/*********************************************
* IAppLauncherQuery
**********************************************/
export interface IAppLauncherQuery extends AppLauncherOData, AppLauncherMethods {
}
/*********************************************
* AppLauncher
**********************************************/
export interface AppLauncher extends Base.IBaseResult, AppLauncherProps, AppLauncherCollections, AppLauncherMethods {
}
/*********************************************
* AppLauncherProps
**********************************************/
export interface AppLauncherProps {
Id4a81de82eeb94d6080ea5bf63e27023a?: string;
}
/*********************************************
* AppLauncherPropMethods
**********************************************/
export interface AppLauncherPropMethods {
}
/*********************************************
* AppLauncherCollections
**********************************************/
export interface AppLauncherCollections extends AppLauncherPropMethods {
}
/*********************************************
* AppLauncherOData
**********************************************/
export interface AppLauncherOData extends Base.IBaseResult, AppLauncherProps, AppLauncherMethods {
}
/*********************************************
* AppLauncherMethods
**********************************************/
export interface AppLauncherMethods {
getData(suiteVersion?: number, isMobileRequest?: boolean, locale?: string, onPremVer?: string): Base.IBaseExecution<string>;
}