src/module/interfaces/linkpreview.interface.ts
Properties |
description |
description:
|
Type : string
|
image |
image:
|
Type : string
|
title |
title:
|
Type : string
|
url |
url:
|
Type : string
|
export interface LinkPreview {
title: string;
description: string;
image: string;
url: string;
}