interface NormalizedSchema {
    projectName: string;
    description: string;
    name: string;
    framework: "angular" | "react";
}

Hierarchy (view full)

Properties

projectName: string

The name of the new project.

description: string

The description of the new web extension.

name: string

Name of the new web extension

framework: "angular" | "react"

The application framework to initialize the project with. Supports only angular and react, and defaults to angular.