UNPKG

rough-native

Version:

Create graphics using HTML Canvas or SVG with a hand-drawn, sketchy, appearance. Features comprehensive React hooks, memory management, and React 18 concurrent rendering support.

9 lines (8 loc) 254 B
export interface PlatformAPI { isReactNative(): boolean; isWeb(): boolean; createCanvas?(width: number, height: number): any; createSVGElement?(tagName: string): any; getDocument?(): any; } export declare const Platform: PlatformAPI;