UNPKG

abowire

Version:

This is the official **Abowire Javascript SDK**, which makes it easy to connect to the Abowire **GraphQL API** and includes all the required dependencies you need.

10 lines (9 loc) 291 B
import { BaseSchema } from 'yup'; export declare class ModuleConfiguration<T> { private configSchema; private currentConfig; constructor(configSchema: BaseSchema<T>); configure(key: keyof T, value: T[keyof T]): T; configure(config?: Partial<T>): T; getConfig(): T; }