botframework-schema
Version:
Activity schema for the Microsoft Bot Framework.
17 lines (15 loc) • 346 B
text/typescript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
/**
* SharePoint property pane choice group image size.
*/
export interface PropertyPaneChoiceGroupImageSize {
/**
* The width of the image.
*/
width: number;
/**
* The height of the image.
*/
height: number;
}