UNPKG

photoeditorsdk

Version:

The most comprehensive photo editor SDK for HTML5

9 lines (8 loc) 286 B
import { LibraryCategory } from './category'; import { LibraryImage } from './image'; export declare class LibraryProvider { data: any; loadJSON(url: string): Promise<any>; getCategories(): Promise<LibraryCategory[]>; searchImages(_: string): Promise<LibraryImage[]>; }