UNPKG

288 BTypeScriptView Raw
1export interface IDocumentQuery {
2 followedSites?: Array<{
3 title: string;
4 siteUrl: string;
5 }>;
6 excludeFileTypes?: Array<string>;
7 addonQueryTemplate?: string;
8 alternateTitlePropertyName?: string;
9 alternateModifiedByPropertyName?: string;
10}