mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-06-07 12:46:34 +00:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
|
|
export interface Detailable<T> {
|
|
detail(options: Detailable.Options): Promise<{ item?: T }>;
|
|
}
|
|
|
|
export namespace Detailable {
|
|
export interface Options {
|
|
readonly id: string;
|
|
}
|
|
} |