chore: convert extension apis to TypeScript (#18688)

Converts extensions-related files to TS
This commit is contained in:
Shelley Vohr 2019-06-14 07:52:24 -07:00 committed by GitHub
parent 6e327184bd
commit ffb53405fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 66 additions and 85 deletions

View file

@ -0,0 +1,20 @@
import { Event } from '@electron/internal/renderer/extensions/event'
import { IpcMainEvent } from 'electron'
const { ipcRendererInternal } = require('@electron/internal/renderer/ipc-renderer-internal')
class WebNavigation {
private onBeforeNavigate = new Event()
private onCompleted = new Event()
constructor () {
ipcRendererInternal.on('CHROME_WEBNAVIGATION_ONBEFORENAVIGATE', (event: IpcMainEvent, details: any) => {
this.onBeforeNavigate.emit(details)
})
ipcRendererInternal.on('CHROME_WEBNAVIGATION_ONCOMPLETED', (event: IpcMainEvent, details: any) => {
this.onCompleted.emit(details)
})
}
}
export const setup = () => new WebNavigation()