@grnsft/if-github-plugin
Version:
Github plugin for Impact Framework.
17 lines (16 loc) • 680 B
TypeScript
import { PluginParams, ConfigParams } from '@grnsft/if-core/types';
export declare const Github: (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;
}[]>;
};