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

15 lines
401 B
TypeScript

export function textPropOnStart(tweenProp: any): void;
export default baseTextProperties;
declare namespace baseTextProperties {
const component: string;
const category: string;
namespace Interpolate {
export { units };
}
namespace functions {
export { textOnStart as onStart };
}
}
import units from "../interpolation/units.js";
declare const textOnStart: {};