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

12 lines
363 B
TypeScript

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