Skip to content

Commit fed545e

Browse files
committed
plugin.d.ts -> pluginapi.d.ts
More clear.
1 parent 6638daf commit fed545e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎src/node/plugin.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as express from "express"
33
import * as fs from "fs"
44
import * as path from "path"
55
import * as semver from "semver"
6-
import * as pluginapi from "../../typings/plugin"
6+
import * as pluginapi from "../../typings/pluginapi"
77
import { version } from "./constants"
88
import * as util from "./util"
99
const fsp = fs.promises
@@ -30,7 +30,7 @@ interface Application extends pluginapi.Application {
3030
}
3131

3232
/**
33-
* PluginAPI implements the plugin API described in typings/plugin.d.ts
33+
* PluginAPI implements the plugin API described in typings/pluginapi.d.ts
3434
* Please see that file for details.
3535
*/
3636
export class PluginAPI {

‎test/test-plugin/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as express from "express"
22
import * as path from "path"
3-
import * as pluginapi from "../../../typings/plugin"
3+
import * as pluginapi from "../../../typings/pluginapi"
44

55
export function init(config: pluginapi.PluginConfig) {
66
config.logger.debug("test-plugin loaded!")
File renamed without changes.

0 commit comments

Comments
 (0)