Merge branch 'master' of github.com:konvajs/konva

This commit is contained in:
Anton Lavrenov 2019-04-03 18:08:26 -05:00
commit cf2d7a4479

38
src/index-types.d.ts vendored
View File

@ -134,25 +134,25 @@ declare namespace Konva {
export type KonvaEventObject<E> = import('./types').KonvaEventObject<E>; export type KonvaEventObject<E> = import('./types').KonvaEventObject<E>;
export const Filters: { export const Filters: {
Blur; Blur: typeof Blur;
Brighten; Brighten: typeof Brighten;
Contrast; Contrast: typeof Contrast;
Emboss; Emboss: typeof Emboss;
Enhance; Enhance: typeof Enhance;
Grayscale; Grayscale: typeof Grayscale;
HSL; HSL: typeof HSL;
HSV; HSV: typeof HSV;
Invert; Invert: typeof Invert;
Kaleidoscope; Kaleidoscope: typeof Kaleidoscope;
Mask; Mask: typeof Mask;
Noise; Noise: typeof Noise;
Pixelate; Pixelate: typeof Pixelate;
Posterize; Posterize: typeof Posterize;
RGB; RGB: typeof RGB;
RGBA; RGBA: typeof RGBA;
Sepia; Sepia: typeof Sepia;
Solarize; Solarize: typeof Solarize;
Threshold; Threshold: typeof Threshold;
}; };
} }