Interface DataSourceInterface<PARAMETER_TYPE, RESULT_TYPE>

A DataSource should provide methods to load data

DataSourceInterface

interface DataSourceInterface<PARAMETER_TYPE, RESULT_TYPE> {
    load(parameters): Promise<RESULT_TYPE>;
}

Type Parameters

  • PARAMETER_TYPE

  • RESULT_TYPE

Methods

Methods

Generated using TypeDoc