ambilighter
Version:
Ambilight around the video, image or canvas HTML elements
25 lines (15 loc) • 378 B
text/typescript
import { IColor } from './color.interfaces';
export interface IBoxLightsBorder {
color: IColor;
radius: number;
};
export interface IBoxLightsFrame {
top?: IBoxLightsBorder;
bottom?: IBoxLightsBorder;
left?: IBoxLightsBorder;
right?: IBoxLightsBorder;
};
export interface IOutput {
frame: IBoxLightsFrame;
averageColor: IColor;
};