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

33 lines
1 KiB
TypeScript

export function createTextTweens(target: any, newText: any, ops: any): false | any[];
export namespace textWriteFunctions {
export { getWrite as prepareStart };
export { prepareText as prepareProperty };
export { onStartWrite as onStart };
}
export namespace textWrite {
export const component: string;
export const category: string;
export const properties: string[];
export namespace defaultValues {
const text: string;
const number: string;
}
export namespace defaultOptions {
const textChars: string;
}
export namespace Interpolate {
export { numbers };
}
export { textWriteFunctions as functions };
export namespace Util {
export { charSet };
export { createTextTweens };
}
}
export default textWrite;
declare function getWrite(): any;
declare function prepareText(tweenProp: any, value: any): any;
import { onStartWrite } from "./textWriteBase.js";
import numbers from "../interpolation/numbers.js";
import { charSet } from "./textWriteBase.js";