mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-05-06 04:58:41 +00:00
14 lines
524 B
TypeScript
14 lines
524 B
TypeScript
import { Searchable } from './searchable';
|
|
import { Installable } from './installable';
|
|
import { ArduinoComponent } from './arduino-component';
|
|
|
|
export const LibraryServicePath = '/services/library-service';
|
|
export const LibraryService = Symbol('LibraryService');
|
|
export interface LibraryService extends Installable<Library>, Searchable<Library> {
|
|
install(options: { item: Library, version?: Installable.Version }): Promise<void>;
|
|
}
|
|
|
|
export interface Library extends ArduinoComponent {
|
|
readonly builtIn?: boolean;
|
|
}
|