Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 754 Bytes

PUBLIC_FUNCTIONS.md

File metadata and controls

36 lines (26 loc) · 754 Bytes

Typey.js - Functions:

Below is a list of all the public functions that can be called from the Typey.js instance.

Configuration:

setConfiguration( newOptions ):

Sets the specific configuration options that should be used.
Parameter: newOptions: 'Options' - All the configuration options that should be set (refer to "Configuration Options" documentation for properties).
Returns: 'Object' - The Typey.js class instance.

Additional Data:

getVersion():

Returns the version of Typey.js.
Returns: 'string' - The version number.

Example:

<script> 
    var version = $typey.getVersion();
</script>