mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-27 19:07:16 +00:00
Use eslint&prettier for code linting&formatting
This commit is contained in:
committed by
Francesco Stasi
parent
2a3873a923
commit
0592199858
@@ -1,6 +1,11 @@
|
||||
import { LibraryPackage } from './library-service';
|
||||
import { JsonRpcServer } from '@theia/core/lib/common/messaging/proxy-factory';
|
||||
import { Sketch, Config, BoardsPackage, AttachedBoardsChangeEvent } from '../protocol';
|
||||
import {
|
||||
Sketch,
|
||||
Config,
|
||||
BoardsPackage,
|
||||
AttachedBoardsChangeEvent,
|
||||
} from '../protocol';
|
||||
|
||||
export interface NotificationServiceClient {
|
||||
notifyIndexUpdated(): void;
|
||||
@@ -17,6 +22,8 @@ export interface NotificationServiceClient {
|
||||
|
||||
export const NotificationServicePath = '/services/notification-service';
|
||||
export const NotificationServiceServer = Symbol('NotificationServiceServer');
|
||||
export interface NotificationServiceServer extends Required<NotificationServiceClient>, JsonRpcServer<NotificationServiceClient> {
|
||||
export interface NotificationServiceServer
|
||||
extends Required<NotificationServiceClient>,
|
||||
JsonRpcServer<NotificationServiceClient> {
|
||||
disposeClient(client: NotificationServiceClient): void;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user