UNPKG

photoeditorsdk

Version:

The most comprehensive photo editor SDK for HTML5

15 lines (14 loc) 450 B
import { Omit } from '../../common/utils'; import { AdjustmentIdentifier } from './identifier'; export interface AdjustmentAsset { identifier: AdjustmentIdentifier; } export interface AdjustmentCategory { identifier: string; name: string; /** * An array of AdjustmentAssets that are part of this category. */ items: AdjustmentAsset[]; } export declare type ExistingAdjustmentCategory = Omit<AdjustmentCategory, 'name'>;