@prismatic-io/spectral
Version:
Utility library for building Prismatic connectors and code-native integrations
14 lines (13 loc) • 420 B
TypeScript
import type { Component } from "../../serverTypes";
interface CreateTriggersProps {
component: Component;
dryRun: boolean;
verbose: boolean;
sourceDir: string;
destinationDir: string;
}
export declare const createTriggers: ({ component, dryRun, verbose, sourceDir, destinationDir, }: CreateTriggersProps) => Promise<{
triggersIndex: string | void;
triggers: (string | void)[];
}>;
export {};