kute.js/types/components/svgCubicMorphBase.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

16 lines
490 B
TypeScript

export function onStartCubicMorph(tweenProp: any): void;
export default baseSvgCubicMorph;
declare namespace baseSvgCubicMorph {
const component: string;
const property: string;
namespace Interpolate {
export { numbers };
export { pathToString };
}
namespace functions {
export { onStartCubicMorph as onStart };
}
}
import numbers from "../interpolation/numbers.js";
import pathToString from "svg-path-commander/src/convert/pathToString.js";