File tree 3 files changed +31
-2
lines changed
3 files changed +31
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Oni API
2
+
3
+ This documents the surface area of Oni's API, which is available to both _ plugins_ and _ configuration_ .
4
+
5
+ A good starting point is the [ Plugin API] ( interfaces/plugin.api.html ) , which is the object passed into the ` activate ` methods.
6
+
7
+ An example ` config.js ` using the API object is:
8
+
9
+ ```
10
+ const activate = (oni) => {
11
+ // The passed in `oni` object is an instance of the Plugin API
12
+ }
13
+
14
+ module.exports = {
15
+ activate,
16
+ }
17
+ ```
18
+
19
+ Likewise, for a plugin, the entry point is an ` activate ` method with a [ Plugin API] ( interfaces/plugin.api.html ) object passed in.
20
+
21
+
Original file line number Diff line number Diff line change 3
3
[ ![ npm version] ( https://badge.fury.io/js/oni-api.svg )] ( https://badge.fury.io/js/oni-api )
4
4
5
5
# oni-api
6
- Oni's extensibility model API
6
+
7
+ Oni's extensibility model API, along with auto-generated documentation.
8
+
9
+ The latest documentation is available [ here] ( https://onivim.github.io/oni-api ) .
10
+
11
+ ## Build
12
+
13
+ - ` npm install `
14
+ - ` npm run build `
Original file line number Diff line number Diff line change 6
6
"types" : " lib/index.d.ts" ,
7
7
"scripts" : {
8
8
"build:src" : " rimraf lib && tsc" ,
9
- "build:docs" : " typedoc --out docs src/index.ts --mode file" ,
9
+ "build:docs" : " typedoc --out docs src/index.ts --mode file --readme INDEX.md " ,
10
10
"build" : " npm run build:src && npm run build:docs" ,
11
11
"test" : " echo \" Error: no test specified\" && exit 1"
12
12
},
You can’t perform that action at this time.
0 commit comments