You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
328 B
9 lines
328 B
9 months ago
|
import { RenderingContext2D } from '../types';
|
||
|
import Element from './Element';
|
||
|
export default class MaskElement extends Element {
|
||
|
static ignoreStyles: string[];
|
||
|
type: string;
|
||
|
apply(ctx: RenderingContext2D, element: Element): void;
|
||
|
render(_: RenderingContext2D): void;
|
||
|
}
|
||
|
//# sourceMappingURL=MaskElement.d.ts.map
|