Skip to content

Commit

Permalink
fix: remove unused interface (podman-desktop#6347)
Browse files Browse the repository at this point in the history
Signed-off-by: axel7083 <[email protected]>
  • Loading branch information
axel7083 authored Mar 11, 2024
1 parent 9d0cd33 commit 6f62bb7
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/main/src/plugin/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,8 @@
* SPDX-License-Identifier: Apache-2.0
***********************************************************************/

import type { ContainerInfo } from './api/container-info.js';
import type { IDisposable } from './types/disposable.js';

export interface RemoteAPI {
// eslint-disable-next-line @typescript-eslint/ban-types
listContainers(options?: {}): Promise<ContainerInfo[]>;
}

export type ApiSenderType = {
send: (channel: string, data?: unknown) => void;
receive: (channel: string, func: (...args: unknown[]) => void) => IDisposable;
Expand Down

0 comments on commit 6f62bb7

Please sign in to comment.