UNPKG

@prismatic-io/spectral

Version:

Utility library for building Prismatic connectors and code-native integrations

14 lines (13 loc) 414 B
import type { Component } from "../../serverTypes"; interface CreateActionsProps { component: Component; dryRun: boolean; verbose: boolean; sourceDir: string; destinationDir: string; } export declare const createActions: ({ component, dryRun, verbose, sourceDir, destinationDir, }: CreateActionsProps) => Promise<{ actionIndex: string | void; actions: (string | void)[]; }>; export {};