Getting Started
This section will help you set up and start using starter-lib-ts.
Using Package Manager
sh
npm install starter-lib-tssh
yarn add starter-lib-tssh
pnpm install starter-lib-tsBrowser Direct Import
js
<script src="https://unpkg.com/starter-lib-ts"></script>It will be exposed as window.StarterLibTs in the global object.
Usage Example
Simply import the required functions from starter-lib-ts.
js
import { sayHello } from 'starter-lib-ts'
sayHello('Kieran')For more information, please refer to the functions List.
