botframework-schema
Version:
Activity schema for the Microsoft Bot Framework.
23 lines • 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