@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
13 lines • 579 B
TypeScript
import { PrincipalType } from '../PropertyFieldPeoplePicker';
import { IPropertyFieldGroupOrPerson } from './../propertyFields/peoplePicker/IPropertyFieldPeoplePicker';
import { BaseComponentContext } from '@microsoft/sp-component-base';
/**
* Service interface definition
*/
export interface ISPPeopleSearchService {
/**
* Search People from a query
*/
searchPeople(ctx: BaseComponentContext, query: string, principleType: PrincipalType[], siteUrl?: string): Promise<Array<IPropertyFieldGroupOrPerson>>;
}
//# sourceMappingURL=ISPPeopleSearchService.d.ts.map