123456789101112131415 |
- import { SBrushType } from "./enums/SBrushType";
- import { SColor, SGradient } from "./";
- export declare class SBrush {
- type: SBrushType;
- private _color;
- get color(): SColor;
- set color(value: SColor);
- private _gradient;
- get gradient(): SGradient | null;
- set gradient(value: SGradient | null);
- constructor();
- constructor(brush: SBrush);
- constructor(color: SColor);
- constructor(gradient: SGradient);
- }
|