mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-13 00:15:35 +00:00
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
export interface ISearchSpfxWebPartProps {
|
|
title: string;
|
|
query?: string;
|
|
sorting?: string;
|
|
template?: string;
|
|
maxResults?: number;
|
|
external?: boolean;
|
|
externalUrl?: string;
|
|
}
|