7.14.1 • Published 1 month ago

@enonic-types/lib-cluster v7.14.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 month ago

Enonic XP lib-cluster TS types

TypeScript definitions for lib-cluster library of Enonic XP

Install

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

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 {isMaster} = require('/lib/xp/cluster');

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

example.ts

import {isMaster} from '/lib/xp/cluster';

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

7.14.1

1 month ago

7.14.0

4 months ago

7.14.0-B3

4 months ago

7.14.0-RC1

4 months ago

7.14.0-B2

4 months ago

7.14.0-B1

5 months ago

7.13.5

5 months ago

7.13.3

8 months ago

7.13.4

6 months ago

7.13.1

10 months ago

7.13.2

9 months ago

7.13.0

11 months ago

7.13.0-RC1

11 months ago

7.13.0-B2

11 months ago

7.13.0-B3

11 months ago

7.13.0-B1

11 months ago

7.12.0-RC2

1 year ago

7.12.0-RC3

1 year ago

7.12.0-RC1

1 year ago

7.12.0-RC4

1 year ago

7.12.0-RC5

1 year ago

7.12.2

1 year ago

7.12.0

1 year ago

7.12.1

1 year ago

7.12.0-B1

1 year ago

7.11.3

1 year ago

7.11.1

1 year ago

7.11.2

1 year ago

7.11.0-RC1

2 years ago

7.11.0-RC3

2 years ago

7.11.0-RC4

2 years ago

7.11.0-B1

2 years ago

7.11.0-B3

2 years ago

7.11.0-B4

2 years ago

7.11.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago