19 lines
No EOL
572 B
TypeScript
19 lines
No EOL
572 B
TypeScript
import { PropertyPaneFieldProperties } from './propertyPaneFieldProperties';
|
|
/**
|
|
* SharePoint property pane checkbox field properties.
|
|
*/
|
|
export interface PropertyPaneCheckboxProperties extends PropertyPaneFieldProperties {
|
|
/**
|
|
* The label text to display next to the checkbox.
|
|
*/
|
|
text?: string;
|
|
/**
|
|
* Indicates whether the checkbox is disabled or not.
|
|
*/
|
|
disabled?: boolean;
|
|
/**
|
|
* Indicates whether the checkbox is checked or not.
|
|
*/
|
|
checked?: boolean;
|
|
}
|
|
//# sourceMappingURL=propertyPaneCheckboxProperties.d.ts.map
|