Skip to main content
Module

x/live/engine/manifest/manifestBuilder.ts>ManifestBuilder

Git-based Visual CMS for Deno, </> htmx and Tailwind apps. Deploy on any Deno-compatible host.
Very Popular
Go to Latest
interface ManifestBuilder
import { type ManifestBuilder } from "https://deno.land/x/live@1.96.6/engine/manifest/manifestBuilder.ts";

Type Parameters

optional
TManifest extends AppManifest = AppManifest

Properties

mergeWith: (def: TManifest[]) => ManifestBuilder
equal: (other: ManifestBuilder) => boolean
toJSONString: () => string
addImports: (...imports: Import[]) => ManifestBuilder
addManifestValues: (...vals: [string, JSONValue][]) => ManifestBuilder
addValuesOnManifestKey: (key: string, ...vals: [string, JSONValue][]) => ManifestBuilder
addExports: (...exports: Export[]) => ManifestBuilder
addExportDefault: (dfs: ExportDefault) => ManifestBuilder
addStatements: (...statements: Statement[]) => ManifestBuilder

Methods

build(): string