UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

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