botframework-schema
Version:
Activity schema for the Microsoft Bot Framework.
27 lines (24 loc) • 653 B
text/typescript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
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;
}