kute.js/types/components/svgDrawBase.d.ts
thednp e5456b86e9 Changes:
* added a more consistent Typescript generate tsconfig.json
* in regards to Typescript, all internals/externals well defined
2021-11-13 18:51:59 +02:00

14 lines
358 B
TypeScript

export function onStartDraw(tweenProp: any): void;
export default baseSVGDraw;
declare namespace baseSVGDraw {
const component: string;
const property: string;
namespace Interpolate {
export { numbers };
}
namespace functions {
export { onStartDraw as onStart };
}
}
import numbers from "../interpolation/numbers.js";