UNPKG

pikaso

Version:

Seamless, Fully-typed and Fully-tested HTML5 Canvas Library

13 lines (12 loc) 289 B
export type Nullable<T> = T | null; export interface UnknownObject { [key: string]: boolean | number | string | object | null | undefined; } export declare interface Dimensions { width: number; height: number; } export declare interface Point { x: number; y: number; }