7.14.1 • Published 1 month ago

@enonic-types/global v7.14.1

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

Enonic XP global TS types

TypeScript definitions for global variables of Enonic XP

Install

npm i --save-dev @enonic-types/global

Use

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

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

After that, all the global XP variables will be typed.

Import functions, such as require, will return typed objects if the corresponding types for imported libraries are also added to your tsconfig.json.

Configuration

Require

To add support for type resolution for the custom libraries via require, you can redeclare the XpLibraries interface in global scope, which will lead to declaration merging:

declare global {
    interface XpLibraries {
        '/lib/custom/mylib': typeof import('./mylib');
    }
}

Other imports

If you want to use custom import functions, like __non_webpack_require__ with Webpack, just use global XpRequire type for this:

declare const __non_webpack_require__: XpRequire;

Beans

To create a new bean, a __.newBean() function must be used. Making it return a proper type can be done in two ways. Say you have created an interface for that been somewhere in your project:

interface SomeHelper {
    help(text: string): void;
}

Option 1

You can pass the type argument explicitly. This option is a bit cleaner.

const helper = __.newBean<SomeHelper>('com.me.project.SomeHelper');

Option 2

Or you can map the bean name to bean interface. It may be a preferable way to do it, if the bean is used across multiple files:

declare global {
    interface XpBeans {
        'com.me.project.SomeHelper': SomeHelper;
    }
}

const helper = __.newBean('com.me.project.SomeHelper');
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

6 months ago

7.13.3

8 months ago

7.13.4

7 months ago

7.13.1

10 months ago

7.13.2

10 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-RC2

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

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