import { Types } from '@notifi-network/notifi-graphql'; import { Operation } from '../models'; /** * Input param for creating a Source * * @remarks * This describes the values to use for Source * * @property name - Unique friendly name of Source * @property blockchainAddress - The Source blockchain address where events are coming from * @property type - The Source type of blockchainAddress *
*
* See [Alert Creation Guide]{@link https://docs.notifi.network} for more information on creating Alerts */ export declare type CreateSourceInput = Types.CreateSourceInput; export declare type CreateSourceResult = Types.SourceFragmentFragment; export declare type CreateSourceService = Readonly<{ createSource: Operation; }>; //# sourceMappingURL=CreateSource.d.ts.map