UNPKG

konva

Version:

<p align="center"> <img src="https://raw.githubusercontent.com/konvajs/konvajs.github.io/master/apple-touch-icon-180x180.png" alt="Konva logo" height="180" /> </p>

28 lines (27 loc) 1.13 kB
import { BaseLayer } from './BaseLayer'; /** * FastLayer constructor. Layers are tied to their own canvas element and are used * to contain shapes only. If you don't need node nesting, mouse and touch interactions, * or event pub/sub, you should use FastLayer instead of Layer to create your layers. * It renders about 2x faster than normal layers. * @constructor * @memberof Konva * @augments Konva.BaseLayer * @param {Object} config * @param {Boolean} [config.clearBeforeDraw] set this property to false if you don't want * to clear the canvas before each layer draw. The default value is true. * @param {Boolean} [config.visible] * @param {String} [config.id] unique id * @param {String} [config.name] non-unique name * @param {Number} [config.opacity] determines node opacity. Can be any number between 0 and 1 * @@containerParams * @example * var layer = new Konva.FastLayer(); */ export declare class FastLayer extends BaseLayer { _validateAdd(child: any): void; _setCanvasSize(width: any, height: any): void; hitGraphEnabled(): boolean; drawScene(can?: any): this; draw(): this; }