mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
22 lines
318 B
TypeScript
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);
|