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

23 lines
713 B
TypeScript

export namespace onStartAttr {
function attr(tweenProp: any): void;
function attr(tweenProp: any): void;
function attributes(tweenProp: any): void;
function attributes(tweenProp: any): void;
}
export default baseAttributes;
export const attributes: {};
declare namespace baseAttributes {
export { ComponentName as component };
export const property: string;
export namespace Interpolate {
export { numbers };
export { colors };
}
export namespace functions {
export { onStartAttr as onStart };
}
}
declare const ComponentName: "baseHTMLAttributes";
import numbers from "../interpolation/numbers.js";
import colors from "../interpolation/colors.js";