All files / src typescript-rest.ts

100% Statements 14/14
100% Branches 0/0
100% Functions 1/1
100% Lines 13/13

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19    14x 14x 14x   14x 14x 14x 14x 14x 14x   14x 14x 15x   14x  
'use strict';
 
import { ServerConfig } from './server/config';
import * as Errors from './server/model/errors';
import * as Return from './server/model/return-types';
 
export * from './decorators/parameters';
export * from './decorators/methods';
export * from './decorators/services';
export * from './server/model/server-types';
export * from './server/server';
export * from './authenticator/passport';
 
export { Return };
export { Errors };
export { DefaultServiceFactory } from './server/server-container';
 
ServerConfig.configure();