Skip to content

Commit

Permalink
fix(types): Fix index.d.ts errors in cubejs-server. (#521) Thanks to …
Browse files Browse the repository at this point in the history
…jwalton!
  • Loading branch information
Jason Walton authored Mar 19, 2020
1 parent b3a0a34 commit 0b01fd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cubejs-server/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CreateOptions as CoreCreateOptions, CreateOptions } from "@cubejs-backend/server-core";
import { CreateOptions as CoreCreateOptions } from "@cubejs-backend/server-core";
import express from 'express';
import https from 'https';
import http from 'http';
Expand All @@ -15,4 +15,4 @@ declare class CubejsServer {
testConnections(): Promise<void>;
}

export = CubejsServer;
export default CubejsServer;

0 comments on commit 0b01fd6

Please sign in to comment.