UNPKG

photoeditorsdk

Version:

The most comprehensive photo editor SDK for HTML5

11 lines (10 loc) 225 B
/** * @ignore */ export type Mutable<T> = { -readonly [P in keyof T]: T[P]; }; /** * @ignore */ export type Omit<ObjectType, KeysType extends keyof ObjectType> = Pick<ObjectType, Exclude<keyof ObjectType, KeysType>>;