UNPKG

@prismatic-io/spectral

Version:

Utility library for building Prismatic connectors and code-native integrations

10 lines (9 loc) 305 B
interface CreateTemplateProps { source: string; destination?: string; data?: Record<string, unknown>; dryRun: boolean; verbose: boolean; } export declare const createTemplate: ({ source, destination, data, dryRun, verbose, }: CreateTemplateProps) => Promise<string | void>; export {};