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

export function boxModelOnStart(tweenProp: any): void;
export default baseBoxModel;
declare namespace baseBoxModel {
export const component: string;
export const category: string;
export { baseBoxProps as properties };
export namespace Interpolate {
export { numbers };
}
export namespace functions {
export { baseBoxOnStart as onStart };
}
}
declare const baseBoxProps: string[];
import numbers from "../interpolation/numbers.js";
declare const baseBoxOnStart: {};