mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-21 09:38:01 +02:00
7 lines
110 B
TypeScript
7 lines
110 B
TypeScript
|
/* eslint-disable import/prefer-default-export */
|
||
|
|
||
|
export interface Size {
|
||
|
width: number;
|
||
|
height: number;
|
||
|
}
|