@prismatic-io/spectral
Version:
Utility library for building Prismatic connectors and code-native integrations
11 lines (10 loc) • 404 B
TypeScript
import type { ServerTypeInput } from "./getInputs";
export declare const DOC_BLOCK_DEFAULT: (input: ServerTypeInput) => string;
interface AddLineProps {
key?: string;
value?: string | unknown | undefined | null;
raw?: string;
}
export declare const addLine: ({ key, value, raw }: AddLineProps) => string;
export declare const addPunctuation: (value: string | undefined) => string;
export {};