You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-23 22:36:32 +02:00
19 lines
433 B
TypeScript
19 lines
433 B
TypeScript
export interface Size {
|
|
width?: number;
|
|
height?: number;
|
|
}
|
|
|
|
export interface Link {
|
|
title: string;
|
|
url: string;
|
|
}
|
|
|
|
export type EmptyObject = Record<string, never>;
|
|
|
|
// This utility allows creating types that are intended to act somewhat like `unknown`, but
|
|
// are more type safe.
|
|
// See https://github.com/microsoft/TypeScript/issues/202
|
|
export type VirtualOpaqueType<Id extends string> = {
|
|
readonly __virtualOpaqueType: Id;
|
|
};
|