UNPKG

@prismatic-io/spectral

Version:

Utility library for building Prismatic connectors and code-native integrations

8 lines (7 loc) 227 B
import type { Input } from "./getInputs"; export type Imports = Record<string, string[]>; interface GetImportsProps { inputs: Input[]; } export declare const getImports: ({ inputs }: GetImportsProps) => Imports; export {};