UNPKG
@ventum-digital/iiq-plugin-project-generator
Version:
latest (1.1.3)
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
A npm tool to set-up the project structure for developing an IIQ Plugin.
@ventum-digital/iiq-plugin-project-generator
/
templates
/
module
/
extensions
/
component
/
src
/
functions.ts
11 lines
(9 loc)
•
195 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
function
foo
(
bar
:
any
):
boolean
{
return
bar
instanceof
Object
; }
export
function
bar
(
foo
:
string
):
void
{
console
.
log
(foo); }
export
function
baz
(
baz
:
string
):
void
{
alert
(baz) }