1
0
mirror of https://github.com/laurent22/joplin.git synced 2026-04-24 19:55:13 +02:00
Files
joplin/packages/utils/types.ts
T

10 lines
118 B
TypeScript

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