@etsoo/website
Version:
ETSOO CMS Based NextJs Website Framework
37 lines (36 loc) • 456 B
TypeScript
/**
* Article photo
* 文章照片
*/
export type ArticlePhoto = {
/**
* URL
* 路径
*/
url: string;
/**
* Width
* 宽度
*/
width: number;
/**
* Height
* 高度
*/
height: number;
/**
* Title
* 标题
*/
title?: string;
/**
* Description
* 描述
*/
description?: string;
/**
* Link
* 链接
*/
link?: string;
};