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