kute.js/types/components/shadowPropertiesBase.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
449 B
TypeScript

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