You cannot 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
336 B
TypeScript
9 lines
336 B
TypeScript
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
|