main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
521 bytes
|
Line | |
---|
1 | import { RenderingContext2D } from '../types';
|
---|
2 | import Document from './Document';
|
---|
3 | import Element from './Element';
|
---|
4 | export default class FeGaussianBlurElement extends Element {
|
---|
5 | type: string;
|
---|
6 | readonly extraFilterDistance: number;
|
---|
7 | protected readonly blurRadius: number;
|
---|
8 | constructor(document: Document, node: HTMLElement, captureTextNodes?: boolean);
|
---|
9 | apply(ctx: RenderingContext2D, x: number, y: number, width: number, height: number): void;
|
---|
10 | }
|
---|
11 | //# sourceMappingURL=FeGaussianBlurElement.d.ts.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.