1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-30 08:26:59 +02:00
joplin/packages/utils/types.ts

10 lines
118 B
TypeScript

export interface Size {
width?: number;
height?: number;
}
export interface Link {
title: string;
url: string;
}