@microsoft/sp-webpart-base
Version:
SharePoint Framework support for building web parts
34 lines • 937 B
TypeScript
import type { ISpPageContext } from '@msinternal/odsp-datasources/lib/interfaces/ISpPageContext';
/**
* Options for rendering the AudienceForm property pane component
*
* @internal
*/
export interface IAudienceFormOptions {
/**
* The list of GUIDs for initially selected audiences.
* The audience data source will request group information for each GUID.
*/
audiences: string[];
/**
* The maximum number of audiences to select.
*/
limit: number;
/**
* Current page context
*/
pageContext: ISpPageContext;
/**
* The name of the web part property that the AudienceForm is configuring
*/
propertyName: string;
/**
* Optional help link to render in the form.
*/
helpLink?: string;
/**
* Optional override for the text that appears in the tooltip.
*/
tooltipText?: string;
}
//# sourceMappingURL=IAudienceFormOptions.d.ts.map