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

SrcProps

import type { SrcProps } from "https://raw.githubusercontent.com/Hatscat/MetavaScript/main/index.ts";

Web App source code properties

type SrcProps = {
css?: string;
html?: {
head?: string | string[];
body?: string | string[];
}
;
js?: string;
outputPath?: string;
}
;

§Type

§
{
css?: string;
html?: {
head?: string | string[];
body?: string | string[];
}
;
js?: string;
outputPath?: string;
}
[src]