UNPKG
s9s-objects
Version:
latest (1.0.1)
1.0.1
1.0.0
Global object container, used across projects
s9s-objects
/
src
/
JavascriptTypes.js
15 lines
(12 loc)
•
237 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict'
;
/** *
@enum
{
string
} */
exports
=
module
.
exports
= {
TypeNumber
:
'number'
,
TypeString
:
'string'
,
TypeFunction
:
'function'
,
TypeObject
:
'object'
,
TypeBoolean
:
'boolean'
,
Undefined
:
'undefined'
};