interface IColorManager {
    key: string;
    stringPrefix: string;
    handleColor(color): undefined | IRgb;
    handleRangeColor(color): undefined | IRgb;
    parseString(input): undefined | IRgba;
}

Implemented by

Properties

key: string
stringPrefix: string

Methods

  • Parameters

    Returns undefined | IRgb

  • Parameters

    Returns undefined | IRgb

  • Parameters

    • input: string

    Returns undefined | IRgba