mirror of
https://github.com/misskey-dev/summaly.git
synced 2025-06-05 04:47:30 +09:00
29 lines
383 B
TypeScript
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;
|