1 | import { RenderingContext2D } from '../types';
|
2 | import { Property } from '../Property';
|
3 | import { Document } from './Document';
|
4 | import { Element } from './Element';
|
5 | import { PathElement } from './PathElement';
|
6 | import { StopElement } from './StopElement';
|
7 | export declare abstract class GradientElement extends Element {
|
8 | readonly attributesToInherit: string[];
|
9 | protected readonly stops: StopElement[];
|
10 | constructor(document: Document, node: HTMLElement, captureTextNodes?: boolean);
|
11 | abstract getGradient(ctx: RenderingContext2D, element: PathElement): CanvasGradient | null;
|
12 | getGradientUnits(): string;
|
13 | createGradient(ctx: RenderingContext2D, element: PathElement, parentOpacityProp: Property): string | CanvasGradient | CanvasPattern;
|
14 | protected inheritStopContainer(stopsContainer: Element): void;
|
15 | protected addParentOpacity(parentOpacityProp: Property, color: string): string;
|
16 | }
|
17 | //# sourceMappingURL=GradientElement.d.ts.map |
\ | No newline at end of file |