Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
chore(types): split out config interface from configParser (#3321)
Browse files Browse the repository at this point in the history
- split out config interface from configParser
- add comments from docs/referenceConf.js to lib/config.ts
- allows for users to `import {Config} from 'protractor';`
  • Loading branch information
cnishina authored Jul 6, 2016
1 parent c80cbbf commit 1e9f500
Show file tree
Hide file tree
Showing 17 changed files with 571 additions and 75 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ gulp.task('default',['prepublish']);

gulp.task('types', function(done) {
var folder = 'built';
var files = ['browser', 'element', 'locators', 'expectedConditions'];
var files = ['browser', 'element', 'locators', 'expectedConditions', 'config'];
var outputFile = path.resolve(folder, 'index.d.ts');
var contents = '';
files.forEach(file => {
Expand Down
Loading

0 comments on commit 1e9f500

Please sign in to comment.