本文整理汇总了TypeScript中crash-reporter.start函数的典型用法代码示例。如果您正苦于以下问题:TypeScript start函数的具体用法?TypeScript start怎么用?TypeScript start使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了start函数的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: require
// electron
const app: any = require('app');
const Menu: any = require('menu');
const shell: any = require('shell');
const crashReporter: any = require('crash-reporter');
const BrowserWindow: any = require('browser-window');
let mainWindow: any = null;
let template: any;
let menu: any;
// app
import {AppConfigService} from './frameworks/app.framework/services/app-config.service';
crashReporter.start({
productName: 'Angular2SeedAdvanced',
companyName: 'NathanWalker',
submitURL: 'https://github.com/NathanWalker/angular2-seed-advanced',
autoSubmit: true
});
if (process.env.NODE_ENV === 'development') {
require('electron-debug')();
}
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('ready', () => {