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

17 lines
468 B
TypeScript

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