UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

18 lines (17 loc) 628 B
import Project from "../../app/Project"; import IProjectInfoGenerator from "../IProjectInfoGenerator"; import ProjectInfoItem from "../ProjectInfoItem"; /** * Validates files against forbidden file lists and allowed extensions. * * @see {@link ../../../public/data/forms/mctoolsval/forbfile.form.json} for topic definitions */ export default class CheckForbiddenFilesGenerator implements IProjectInfoGenerator { id: string; title: string; canAlwaysProcess: boolean; generate(project: Project): Promise<ProjectInfoItem[]>; private validateItemPackage; private resultsForFile; summarize(): void; }