export interface Schema {
    "$schema": "http://json-schema.org/schema";
    id: "SchematicsTailwind";
    title: "Angular Tailwind Schema";
    type: "object";
    properties: {
        /** Name of the project to target. */
        project: {
            "type": "string";
            "description": "The name of the project.";
            "$default": {
                "$source": "projectName";
            };
        };
    };
}
