1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/pdf-viewer/types.ts
2022-09-05 12:35:38 +01:00

12 lines
182 B
TypeScript

export interface ScaledSize {
height: number;
width: number;
scale: number;
}
export interface IconButtonProps {
onClick: ()=> void;
size?: number;
color?: string;
}