@enonic-types/lib-value
v7.14.4
Published
Type definitions for lib-value.
Downloads
1,817
Readme
Enonic XP lib-value TS types
TypeScript definitions for
lib-value
library of Enonic XP
Install
npm i --save-dev @enonic-types/lib-value
Use
Require and custom imports
To make require
work out of the box, you must install and add the @enonic-types/global
types. Aside from providing definitions for XP
global objects, e.g. log
, app
, __
, etc, requiring a library by the default path will return typed object.
tsconfig.json
{
"compilerOptions": {
"types": [
"@enonic-types/global"
]
}
}
example.ts
const {getPoint, localDate, localTime, binary, instant} = require('/lib/xp/value');
More detailed explanation on how it works and how to type custom import function can be found here.
ES6-style import
If you are planning to use import
in your code and transpile it with the default tsc
TypeScript compiler, you'll need to add proper
types mapping to your configuration.
tsconfig.json
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"/lib/xp/value": ["node_modules/@enonic-types/lib-value"]
}
}
}
example.ts
import {getPoint, localDate, localTime, binary, instant} from '/lib/xp/value';
Setting baseUrl
and paths
will allow the tsc
to keep the valid paths in the resulting JavaScript files.