@substrate/api-sidecar
Version:
REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.
27 lines (26 loc) • 785 B
TypeScript
import { ConfigSpecs } from 'confmgr';
/**
* Access a singleton specification for config enviroment variables that will
* be initialized on first use.
*/
export declare class Specs {
private static _specs;
private static create;
/**
* Configurable enviroment variable specifications.
*/
static get specs(): ConfigSpecs;
/**
* EXPRESS module of the enviroment variable configuration specification.
*/
private static appendExpressSpecs;
/**
* SUBSTRATE module of the enviroment variable configuration specification.
*/
private static appendSubstrateSpecs;
/**
* LOG module of the enviroment variable configuration specification.
*/
private static appendLogSpecs;
private static appendMetricsSpecs;
}