summaly/src/summary.ts
2017-02-06 06:58:04 +09:00

29 lines
383 B
TypeScript

type Summary = {
/**
* The description of that web page
*/
description: string;
/**
* The url of the icon of that web page
*/
icon: string;
/**
* The name of site of that web page
*/
sitename: string;
/**
* The url of the thumbnail of that web page
*/
thumbnail: string;
/**
* The title of that web page
*/
title: string;
}
export default Summary;