lightningdevkit
Version:
Lightning Development Kit
17 lines (16 loc) • 606 B
text/typescript
import { NodeIdLookUp } from '../structs/NodeIdLookUp.mjs';
import { CommonBase } from './CommonBase.mjs';
/**
* A [`NodeIdLookUp`] that always returns `None`.
*/
export declare class EmptyNodeIdLookUp extends CommonBase {
/**
* Constructs a new EmptyNodeIdLookUp given each field
*/
static constructor_new(): EmptyNodeIdLookUp;
/**
* Constructs a new NodeIdLookUp which calls the relevant methods on this_arg.
* This copies the `inner` pointer in this_arg and thus the returned NodeIdLookUp must be freed before this_arg is
*/
as_NodeIdLookUp(): NodeIdLookUp;
}