2020-04-12 18:27:01 +02:00
|
|
|
declare module '*.png';
|
|
|
|
declare module '*.jpg';
|
|
|
|
declare module '*.jpeg';
|
|
|
|
declare module '*.svg';
|
|
|
|
declare module '*.gif';
|
2020-07-21 23:31:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ln-service does not have proper types. This is slightly
|
|
|
|
* problematic, as this leads to types being `any` **a ton**
|
|
|
|
* of places.
|
|
|
|
*
|
|
|
|
* Here's an issue tracking this: https://github.com/alexbosworth/ln-service/issues/112
|
|
|
|
*
|
|
|
|
* It seems like the library is generated from Proto files.
|
|
|
|
* Could it be an idea to try and generate TypeScript declarations
|
|
|
|
* from those files?
|
|
|
|
*/
|
|
|
|
declare module 'ln-service';
|
|
|
|
declare module '@alexbosworth/request';
|
|
|
|
declare module 'balanceofsatoshis/request';
|
|
|
|
declare module 'balanceofsatoshis/swaps';
|
|
|
|
declare module 'balanceofsatoshis/balances';
|
2020-08-19 08:35:17 +02:00
|
|
|
declare module 'balanceofsatoshis/network';
|
2021-08-27 11:41:14 +02:00
|
|
|
declare module 'balanceofsatoshis/commands';
|