Interface PlotConfig

Interface representing the configuration for a plot.

interface PlotConfig {
    plot: {
        id: string;
        name?: string;
        defaultTemplate: string;
        url?: string;
    };
    koadz?: KoadzConfigTypes & { projectName: string };
    mason?: {};
}

Properties

Properties

plot: { id: string; name?: string; defaultTemplate: string; url?: string }

Configuration for the plot.

Type declaration

  • id: string

    Unique identifier for the plot.

  • Optionalname?: string
  • defaultTemplate: string

    Default template for the plot.

  • Optionalurl?: string

    Published URL

koadz?: KoadzConfigTypes & { projectName: string }

Optional configuration for Koadz.

mason?: {}

Optional configuration for Mason. Add properties for Mason configuration if needed.