Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
}
;

§Type

§
{
type: "id";
id: string;
}
| {
type: "file";
file: Blob;
}
| {
type: "url";
url: string;
}
[src]