lightningdevkit
Version:
Lightning Development Kit
26 lines (25 loc) • 884 B
text/typescript
import { CommonBase } from './CommonBase.mjs';
/**
* A request made to an LSP to retrieve the supported options.
*
* Please refer to the [bLIP-51 / LSPS1
* specification](https://github.com/lightning/blips/blob/master/blip-0051.md#1-lsps1get_info) for
* more information.
*/
export declare class LSPS1GetInfoRequest extends CommonBase {
/**
* Constructs a new LSPS1GetInfoRequest given each field
*/
static constructor_new(): LSPS1GetInfoRequest;
clone_ptr(): bigint;
/**
* Creates a copy of the LSPS1GetInfoRequest
*/
clone(): LSPS1GetInfoRequest;
/**
* Checks if two LSPS1GetInfoRequests contain equal inner contents.
* This ignores pointers and is_owned flags and looks at the values in fields.
* Two objects with NULL inner values will be considered "equal" here.
*/
eq(b: LSPS1GetInfoRequest): boolean;
}