Merge pull request #365 from oott123/add-ts-gco-def

add globalCompositeOperation (fix #362)
This commit is contained in:
Anton Lavrenov 2018-03-19 10:30:15 +07:00 committed by GitHub
commit 9a1b261fef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View File

@ -8,6 +8,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
* Typescript defs for `Konva.Transformer`
* Typescript defs for `globalCompositeOperation`
## Changes

13
konva.d.ts vendored
View File

@ -5,6 +5,16 @@ declare namespace Konva {
var isDragReady: () => boolean;
var DD: any;
type globalCompositeOperationType = '' |
'source-over' | 'source-in' | 'source-out' | 'source-atop' |
'destination-over' | 'destination-in' | 'destination-out' | 'destination-atop' |
'lighter' | 'copy' | 'xor' | 'multiply' |
'screen' | 'overlay' | 'darken' | 'lighten' |
'color-dodge' | 'color-burn' | 'hard-light' | 'soft-light' |
'difference' | 'exclusion' | 'hue' | 'saturation' |
'color' | 'luminosity'
;
export class Util {
static getRandomColor(): string;
static getRGB(color: string): string;
@ -86,6 +96,7 @@ declare namespace Konva {
dragDistance?: number;
dragBoundFunc?: (pos: Vector2d) => Vector2d;
preventDefault?: boolean;
globalCompositeOperation?: globalCompositeOperationType;
}
interface SizeConfig {
@ -282,6 +293,8 @@ declare namespace Konva {
x(x: number): this;
y(): number;
y(y: number): this;
globalCompositeOperation(): globalCompositeOperationType;
globalCompositeOperation(type: globalCompositeOperationType): this;
}
interface ContainerConfig extends NodeConfig {