This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This will convert string to hex array | |
* | |
* Steps: | |
* 1. Split string into letter array | |
* 2. Iterate over every item | |
* 3. Convert item to decimal code | |
* 4. Convert result to hex string | |
* 5. Lastly, parse integer to hex | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Declaration file generated by dts-gen */ | |
export class Animation { | |
constructor(...args: any[]); | |
update(...args: any[]): void; | |
} | |
export interface Position { |