DefinitelyTyped/types/glue/glue-tests.ts
2018-05-12 17:16:18 +01:00

22 lines
318 B
TypeScript

import * as Glue from "glue";
import * as Hapi from "hapi";
const manifest: Glue.Manifest = {
server: {
port: 3000
},
register: {
plugins: [
"./test-plugin.js",
{
plugin: "./test.js",
routes: {
prefix: "test"
}
}
]
}
};
Glue.compose(manifest);