7.14.1 • Published 1 month ago

@enonic-types/lib-app v7.14.1

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

Enonic XP lib-app TS types

TypeScript definitions for lib-app library of Enonic XP

Install

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

Use

Add the corresponding types to your tsconfig.json file that is used for application's server-side TypeScript code.

tsconfig.json

{
  "compilerOptions": {
    "types": [
      "@enonic-types/lib-app"
    ]
  }
}

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 {
    createVirtualApplication,
    deleteVirtualApplication,
    get,
    list,
    getDescriptor,
    hasVirtual,
    hasReal
} = require('/lib/xp/app');

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

example.ts

import {
    createVirtualApplication,
    deleteVirtualApplication,
    get,
    list,
    getDescriptor,
    hasVirtual,
    hasReal
} from '/lib/xp/app';

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.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.13.0-B2

11 months ago

7.12.0

1 year ago

7.13.0-B3

11 months ago

7.12.1

1 year ago

7.13.0-B1

11 months 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

2 years ago

7.11.0-RC4

2 years ago

7.11.0-RC3

2 years ago

7.11.0-RC1

2 years ago

7.11.0-B4

2 years ago

7.11.0-B3

2 years ago

7.11.0-B1

2 years ago