Skip to content

Commit

Permalink
fix: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
amphro authored and Bob Bergman committed Jan 31, 2019
1 parent 22b130a commit 789816e
Show file tree
Hide file tree
Showing 4 changed files with 556 additions and 514 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"sfdx-faye": "^1.0.9"
},
"devDependencies": {
"@salesforce/dev-scripts": "0.3.9",
"@salesforce/dev-scripts": "0.3.12",
"@types/debug": "0.0.30",
"@types/jsen": "0.0.19",
"@types/jsonwebtoken": "7.2.8",
Expand Down
2 changes: 1 addition & 1 deletion src/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class Connection extends JSForceConnection {
* @param options Constructor options.
*/
public static async create(
this: { new (options: Connection.Options): Connection },
this: new (options: Connection.Options) => Connection,
options: Connection.Options
): Promise<Connection> {
const _aggregator = options.configAggregator || (await ConfigAggregator.create());
Expand Down
3 changes: 2 additions & 1 deletion typedoc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module.exports = {
theme: 'default'
theme: 'default',
readme: 'EXPORTED.md'
};
Loading

0 comments on commit 789816e

Please sign in to comment.