10 lines
190 B
TypeScript

export interface ISearchSpfxWebPartProps {
title: string;
query?: string;
sorting?: string;
template?: string;
maxResults?: number;
external?: boolean;
externalUrl?: string;
}