Skip to content

Instantly share code, notes, and snippets.

@chrisobriensp
Last active September 21, 2016 09:24
Show Gist options
  • Select an option

  • Save chrisobriensp/dae9fec6fcff64dea7f845277feef276 to your computer and use it in GitHub Desktop.

Select an option

Save chrisobriensp/dae9fec6fcff64dea7f845277feef276 to your computer and use it in GitHub Desktop.
See http://cob-sp.com/SPFX-Promises for more info.
export interface ISharePointSearchResults {
PrimaryQueryResult: ISharePointPrimaryQueryResult;
}
export interface ISharePointPrimaryQueryResult {
RelevantResults: ISharePointRelevantResultsTable;
}
export interface ISharePointRelevantResultsTable {
Table: ISharePointSearchResultsTable;
}
export interface ISharePointSearchResultsTable {
Rows: Array<any>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment