fix(core): update
This commit is contained in:
21
ts/data/search.ts
Normal file
21
ts/data/search.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
export interface ISearchResult {
|
||||
searchTerm: string;
|
||||
targetUrl: string;
|
||||
title: string;
|
||||
description: string;
|
||||
rank: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* special data returned by the PageRankCheck check class
|
||||
*/
|
||||
export interface IPageRankResult {
|
||||
googleRank: number;
|
||||
googleBlocked: boolean;
|
||||
bingRank: number;
|
||||
bingBlocked: boolean;
|
||||
searchResults: {
|
||||
google: ISearchResult[];
|
||||
bing: ISearchResult[];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user