Interface ILayer

interface ILayer {
    childrenCells: string[];
    color: string;
    id: number;
    isBlocked: boolean;
    isColored: boolean;
    isPrintable: boolean;
    isVisible: boolean;
    name: string;
    opacity: number;
}

Implemented by

Properties

childrenCells: string[]
color: string
id: number
isBlocked: boolean
isColored: boolean
isPrintable: boolean
isVisible: boolean
name: string
opacity: number