UNPKG

@pnp/spfx-controls-react

Version:

Reusable React controls for SharePoint Framework solutions

22 lines 680 B
export interface ISearchSuggestion { topic: string; backgroundUrl: string; } export type ImageSize = 'All' | 'Small' | 'Medium' | 'Large' | 'Wallpaper'; export type ImageAspect = 'All' | 'Square' | 'Wide' | 'Tall'; export type ImageLicense = 'All' | 'Any'; /** * Rows per page */ export declare const ROWS_PER_PAGE = 3; /** * Maximum row height */ export declare const MAX_ROW_HEIGHT = 250; /** * This is the default search suggestions as of Jan 2019. * I have no idea where Bing gets them. * But you can provide your own when calling this component */ export declare const DEFAULT_SUGGESTIONS: ISearchSuggestion[]; //# sourceMappingURL=WebSearchTab.types.d.ts.map