mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
10 lines
118 B
TypeScript
10 lines
118 B
TypeScript
export interface Size {
|
|
width?: number;
|
|
height?: number;
|
|
}
|
|
|
|
export interface Link {
|
|
title: string;
|
|
url: string;
|
|
}
|