UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

13 lines (12 loc) 327 B
import { ColorModel } from '../component/model/ColorModel'; /** * IColorPalletteService * * @author shiorin, tee4cute * @see [[IColorPalletteService]] */ export interface IColorPalletteService { reload(): Promise<ColorModel[]>; getColorSets(): Promise<any>; getColorSet(name: string): Promise<ColorModel[]>; }