@enonic-types/lib-websocket
TypeScript icon, indicating that this package has built-in type declarations

7.14.4 • Public • Published

Enonic XP lib-websocket TS types

TypeScript definitions for lib-websocket library of Enonic XP

Install

npm i --save-dev @enonic-types/lib-websocket

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 {addToGroup, removeFromGroup, send, sendToGroup, getGroupSize} = require('/lib/xp/websocket');

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/websocket": ["node_modules/@enonic-types/lib-websocket"]
    }
  }
}

example.ts

import {addToGroup, removeFromGroup, send, sendToGroup, getGroupSize} from '/lib/xp/websocket';

Setting baseUrl and paths will allow the tsc to keep the valid paths in the resulting JavaScript files.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @enonic-types/lib-websocket

      Weekly Downloads

      395

      Version

      7.14.4

      License

      Apache-2.0

      Unpacked Size

      3.7 kB

      Total Files

      3

      Last publish

      Collaborators

      • edloidas
      • cwe_at_enonic.com
      • alansemenov