Merge pull request #1826 from tbo47/add-types
Some checks failed
Test Browser / build (16.x) (push) Has been cancelled
Test NodeJS / build (16.x) (push) Has been cancelled

add types and remove unused import
This commit is contained in:
Anton Lavrenov 2024-10-04 16:13:25 -05:00 committed by GitHub
commit b379efe0df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { Konva } from './Global';
import { Context } from './Context';
import { IRect, RGB, RGBA, Vector2d } from './types';
import { IRect, RGB, Vector2d } from './types';
/*
* Last updated November 2011

View File

@ -2,7 +2,7 @@ import { Factory } from '../Factory';
import { Node, Filter } from '../Node';
import { getNumberValidator } from '../Validators';
function remap(fromValue, fromMin, fromMax, toMin, toMax) {
function remap(fromValue: number, fromMin: number, fromMax: number, toMin: number, toMax: number) {
// Compute the range of the data
var fromRange = fromMax - fromMin,
toRange = toMax - toMin,