39 lines
No EOL
746 B
TypeScript
39 lines
No EOL
746 B
TypeScript
/**
|
|
* SharePoint property pane drop down option.
|
|
*/
|
|
export interface PropertyPaneDropDownOption {
|
|
/**
|
|
* The index of the option.
|
|
*/
|
|
index?: number;
|
|
/**
|
|
* The key to uniquely identify the option.
|
|
*/
|
|
key: string;
|
|
/**
|
|
* The text to render for this option.
|
|
*/
|
|
text: string;
|
|
/**
|
|
* The type of option to render.
|
|
*/
|
|
type?: DropDownOptionType;
|
|
}
|
|
/**
|
|
* SharePoint property pane drop down option type.
|
|
*/
|
|
export declare enum DropDownOptionType {
|
|
/**
|
|
* Render a normal option.
|
|
*/
|
|
Normal = 0,
|
|
/**
|
|
* Render a divider.
|
|
*/
|
|
Divider = 1,
|
|
/**
|
|
* Render a header.
|
|
*/
|
|
Header = 2
|
|
}
|
|
//# sourceMappingURL=propertyPaneDropDownOption.d.ts.map
|