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

Commit

Permalink
feat: WIP on TS
Browse files Browse the repository at this point in the history
  • Loading branch information
fmiras committed Jun 3, 2019
1 parent 89fcde6 commit dd474c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 367 deletions.
363 changes: 0 additions & 363 deletions index.js

This file was deleted.

9 changes: 5 additions & 4 deletions test/test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
const puppeteer = require('puppeteer')
const dappeteer = require('../index')
const assert = require('assert')
import * as puppeteer from 'puppeteer'
import * as assert from 'assert'

import * as dappeteer from '../index'
import deploy from './deploy'

function pause(seconds) {
function pause(seconds: number): Promise<void> {
return new Promise(res => setTimeout(res, 1000 * seconds))
}

Expand Down

0 comments on commit dd474c7

Please sign in to comment.