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