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

20 lines
698 B
TypeScript

export default opacityProperty;
declare namespace opacityProperty {
export const component: string;
export const property: string;
export const defaultValue: number;
export namespace Interpolate {
export { numbers };
}
export { opacityFunctions as functions };
}
import numbers from "../interpolation/numbers.js";
declare namespace opacityFunctions {
export { getOpacity as prepareStart };
export { prepareOpacity as prepareProperty };
export { onStartOpacity as onStart };
}
declare function getOpacity(tweenProp: any): any;
declare function prepareOpacity(tweenProp: any, value: any): number;
import { onStartOpacity } from "./opacityPropertyBase.js";