23 lines
No EOL
621 B
TypeScript
23 lines
No EOL
621 B
TypeScript
import { PropertyPanePage } from './propertyPanePage';
|
|
/**
|
|
* SharePoint ACE get property pane configuration response.
|
|
*/
|
|
export interface GetPropertyPaneConfigurationResponse {
|
|
/**
|
|
* Property pane pages.
|
|
*/
|
|
pages: PropertyPanePage[];
|
|
/**
|
|
* Current page number.
|
|
*/
|
|
currentPage: number;
|
|
/**
|
|
* Loading indicator delay time.
|
|
*/
|
|
loadingIndicatorDelayTime: number;
|
|
/**
|
|
* Value indicating whether to show loading indicator on top of the property pane.
|
|
*/
|
|
showLoadingIndicator: boolean;
|
|
}
|
|
//# sourceMappingURL=getPropertyPaneConfigurationResponse.d.ts.map
|