Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

repo: perform yarn upgrade #12990

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { SampleUpdater, SampleUpdaterClient, UpdateStatus } from '../../common/u
export class SampleUpdaterImpl implements SampleUpdater, ElectronMainApplicationContribution {

protected clients: Array<SampleUpdaterClient> = [];
protected inProgressTimer: NodeJS.Timer | undefined;
protected inProgressTimer: NodeJS.Timeout | undefined;
protected available = false;

async checkForUpdates(): Promise<{ status: UpdateStatus }> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ export class ElectronMainApplication {
*/
protected attachSaveWindowState(electronWindow: BrowserWindow): void {
const windowStateListeners = new DisposableCollection();
let delayedSaveTimeout: NodeJS.Timer | undefined;
let delayedSaveTimeout: NodeJS.Timeout | undefined;
const saveWindowStateDelayed = () => {
if (delayedSaveTimeout) {
clearTimeout(delayedSaveTimeout);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class NsfwWatcher {
/**
* When the ref count hits zero, we schedule this watch handle to be disposed.
*/
protected deferredDisposalTimer: NodeJS.Timer | undefined;
protected deferredDisposalTimer: NodeJS.Timeout | undefined;

/**
* This deferred only rejects with `WatcherDisposal` and never resolves.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class StatusBarItemImpl implements theia.StatusBarItem {
private _accessibilityInformation: theia.AccessibilityInformation;

private _isVisible: boolean;
private _timeoutHandle: NodeJS.Timer | undefined;
private _timeoutHandle: NodeJS.Timeout | undefined;

_proxy: StatusBarMessageRegistryMain;

Expand Down
Loading
Loading