color-interfaces
Version:
interfaces for color spaces
11 lines (10 loc) • 350 B
TypeScript
import { HSVAInterface as HSVAInterface_, HSVA } from './ColorInterface';
import BaseHSVInterface from './BaseHSVInterface';
declare class HSVAInterface extends BaseHSVInterface implements HSVAInterface_ {
set a(alpha: number);
get a(): number;
get(): HSVA;
set(hsva: HSVA): this;
toCss(): string;
}
export default HSVAInterface;