UNPKG

@kontent-ai/model-generator

Version:

This utility generates strongly-typed models for Delivery JS SDK, Migration toolkit or just general scripting to improve the experience when referencing Kontent.ai related objects.

5 lines (4 loc) 298 B
import type { Configuration } from "@biomejs/wasm-nodejs"; export type FormatOptions = Readonly<Configuration>; export type FormatType = "typescript" | "json"; export declare function formatCodeAsync(code: string, formatType: FormatType, configuration: FormatOptions | undefined): Promise<string>;