ProjectSource
import type { ProjectSource } from "https://raw.githubusercontent.com/SheepTester/htmlifier/v1.0.2/src/htmlifier.ts";
A source of the Scratch project's project.json and assets
type ProjectSource = {
type: "id";
id: string;
} | {type: "file";
file: Blob;
} | {type: "url";
url: string;
};