Fixes lint and deps

This commit is contained in:
Atul R 2020-02-22 23:15:59 +01:00
parent 683d4b6cd8
commit 9daefcb662
4 changed files with 78 additions and 2472 deletions

2542
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -94,7 +94,7 @@ export { QPoint } from './lib/QtCore/QPoint';
export { QColor } from './lib/QtGui/QColor';
export { QTime } from './lib/QtCore/QTime';
export { QUrl, ParsingMode } from './lib/QtCore/QUrl';
export { Format, Scope, QSettings } from './lib/QtCore/QSettings';
export { QSettings, QSettingsFormat, QSettingsScope } from './lib/QtCore/QSettings';
// Layouts:
export { QBoxLayout, QBoxLayoutSignals } from './lib/QtWidgets/QBoxLayout';
export { QGridLayout, QGridLayoutSignals } from './lib/QtWidgets/QGridLayout';

View File

@ -2,7 +2,7 @@ import { NativeElement, Component } from '../core/Component';
import addon from '../utils/addon';
import { QVariant } from './QVariant';
export enum Format {
export enum QSettingsFormat {
NativeFormat = 0,
Registry32Format = 2,
Registry64Format = 3,
@ -10,7 +10,7 @@ export enum Format {
InvalidFormat = 16,
}
export enum Scope {
export enum QSettingsScope {
UserScope = 0,
SystemScope = 1,
}

View File

@ -1,5 +1,5 @@
import addon from '../utils/addon';
import { Component, NativeElement } from '../core/Component';
import { NativeElement } from '../core/Component';
import { checkIfNativeElement } from '../utils/helpers';
import { QClipboard } from './QClipboard';
import { QStyle } from './QStyle';