mirror of https://github.com/laurent22/joplin.git
7 lines
110 B
TypeScript
7 lines
110 B
TypeScript
|
/* eslint-disable import/prefer-default-export */
|
||
|
|
||
|
export interface Size {
|
||
|
width: number;
|
||
|
height: number;
|
||
|
}
|