5 lines
132 B
TypeScript
5 lines
132 B
TypeScript
|
import { IWalletHotspotResponse } from './wallet';
|
||
|
|
||
|
export interface IHotspotResponse {
|
||
|
data: IWalletHotspotResponse['data'][0];
|
||
|
}
|