7.14.1 • Published 18 days ago

@enonic-types/lib-auditlog v7.14.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
18 days ago

Enonic XP lib-auditlog TS types

TypeScript definitions for lib-auditlog library of Enonic XP

Install

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

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 {log, get, find} = require('/lib/xp/auditlog');

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

example.ts

import {log, get, find} from '/lib/xp/auditlog';

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

7.14.1

18 days ago

7.14.0

3 months ago

7.14.0-B3

3 months ago

7.14.0-RC1

3 months ago

7.14.0-B2

4 months ago

7.14.0-B1

4 months ago

7.13.5

5 months ago

7.13.3

8 months ago

7.13.4

6 months ago

7.13.1

9 months ago

7.13.2

9 months ago

7.13.0

10 months ago

7.13.0-RC1

10 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

1 year ago

7.11.0-RC4

1 year 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

1 year ago

0.1.1

2 years ago

0.1.0

2 years ago