UNPKG

modern-canvas

Version:

A JavaScript WebGL rendering engine. only the ESM.

14 lines (13 loc) 460 B
import type { FullStyle } from 'modern-idoc'; import { Resource } from '../../../core'; export interface Element2DStyleProperties extends Omit<FullStyle, 'left' | 'top' | 'width' | 'height'> { left: number; top: number; width: number; height: number; } export interface Element2DStyle extends Element2DStyleProperties { } export declare class Element2DStyle extends Resource { constructor(properties?: Partial<Element2DStyleProperties>); }