mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 00:51:29 +08:00
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
/// <reference path="boom.d.ts" />
|
|
|
|
import Boom = require('boom');
|
|
|
|
Boom.create(500, 'Internal server error', { timestamp: Date.now() });
|
|
Boom.wrap(new Error('test'), 400);
|
|
Boom.badRequest('Invalid cookies');
|