mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 21:31:12 +08:00
21 lines
289 B
TypeScript
21 lines
289 B
TypeScript
import * as Glue from "glue";
|
|
import * as Hapi from "hapi";
|
|
|
|
const manifest: Glue.Manifest = {
|
|
server: {
|
|
port: 3000
|
|
},
|
|
register: {
|
|
plugins: [
|
|
{
|
|
plugin: "./test",
|
|
routes: {
|
|
prefix: "test"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
Glue.compose(manifest);
|