-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
Updated the EntityData Interface
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { Promise } from "../../utils"; | ||
/** | ||
* Dependencies | ||
*/ | ||
export interface IDependencies { | ||
/** | ||
* Constructor | ||
* @param callback - The method to execute after the dependencies are loaded. | ||
*/ | ||
constructor(callback: (...args) => void): any; | ||
/** The maximum amount of time to wait for the scripts to be loaded. */ | ||
MAX_WAIT: number; | ||
/** Flag to determine if the page context information exists */ | ||
pageContextExistsFl: boolean; | ||
/** The promise. */ | ||
promise: Promise; | ||
/** The script file names to load. */ | ||
SCRIPTS: Array<string>; | ||
/** | ||
* Method to ensure the SP classes are loaded | ||
*/ | ||
loadDependencies(): any; | ||
/** | ||
* Method to wait for the page context to be loaded | ||
*/ | ||
waitForPageContext(): any; | ||
} | ||
/** | ||
* Dependencies | ||
* This class will ensure the core SP scripts are loaded on the page. | ||
*/ | ||
export declare class Dependencies { | ||
MAX_WAIT: number; | ||
promise: Promise; | ||
readonly pageContextExistsFl: boolean; | ||
SCRIPTS: Array<string>; | ||
/** | ||
* Constructor | ||
* @param callback - The method to execute after the scripts have been loaded. | ||
*/ | ||
constructor(callback: (...args) => void); | ||
/** | ||
* Method to ensure the SP classes are loaded | ||
*/ | ||
loadDependencies(): void; | ||
/** | ||
* Method to wait for the page context to be loaded | ||
*/ | ||
waitForPageContext(): void; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
This file was deleted.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.