joplin/packages/utils/types.ts

10 lines
118 B
TypeScript

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