@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
13 lines • 473 B
TypeScript
import { ImageSize, ImageAspect, ImageLicense } from ".";
import { IFilePickerResult } from "../FilePicker.types";
import { ISearchResult } from "../../../../services/FilesSearchService.types";
export interface IWebSearchTabState {
isLoading: boolean;
query?: string;
size?: ImageSize;
aspect?: ImageAspect;
license?: ImageLicense;
results: ISearchResult[];
filePickerResult: IFilePickerResult;
}
//# sourceMappingURL=IWebSearchTabState.d.ts.map