Type alias WPMMconfig

WPMMconfig: {
    database?: {
        backupFolder?: string;
        type?: string;
    };
    plugins: WPMMconfigPkg[];
    postInstall?: string[];
    themes: WPMMconfigPkg[];
    wordpress: WordpressPkg;
}

The website configuration

Type declaration

  • Optional database?: {
        backupFolder?: string;
        type?: string;
    }
    • Optional backupFolder?: string
    • Optional type?: string
  • plugins: WPMMconfigPkg[]
  • Optional postInstall?: string[]
  • themes: WPMMconfigPkg[]
  • wordpress: WordpressPkg

Generated using TypeDoc