mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-07-22 13:45:41 +00:00
17 lines
582 B
TypeScript
17 lines
582 B
TypeScript
// Copyright 2017-2020 @polkadot/ledger authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
declare module '@ledgerhq/hw-transport-node-hid-noevents' {
|
|
import Transport from '@ledgerhq/hw-transport';
|
|
|
|
export default class TransportNodeHidNoEvents extends Transport<string> {}
|
|
export function getDevices(): Array<unknown>
|
|
}
|
|
|
|
declare module '@ledgerhq/hw-transport-node-hid-singleton' {
|
|
import TransportNodeHidNoEvents, { getDevices } from '@ledgerhq/hw-transport-node-hid-noevents';
|
|
|
|
export default class TransportNodeHid extends TransportNodeHidNoEvents { }
|
|
}
|