@grnsft/if
Version:
Impact Framework
17 lines (16 loc) • 682 B
TypeScript
import { PluginParams, ConfigParams } from '@grnsft/if-core/types';
export declare const Multiply: (config: ConfigParams | undefined, parametersMetadata: import("@grnsft/if-core/types").PluginParametersMetadata, mapping: import("@grnsft/if-core/types").MappingParams) => {
metadata: {
inputs: {
[x: string]: {
description: string;
unit: string;
'aggregation-method': import("@grnsft/if-core/types").AggregationOptions;
};
};
outputs: import("@grnsft/if-core/types").ParameterMetadata;
};
execute: (inputs: PluginParams[]) => Promise<{
[x: string]: any;
}[]>;
};