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

RepoConfig

import type { RepoConfig } from "https://garn.io/ts/v0.0.20/mod.ts";

Config for importing flake files from GitHub/GitLab/SourceHut.

type RepoConfig = {
repo: string;
revOrRef?: string;
dir?: string;
host?: string;
}
;

§Type

§
{
repo: string;
revOrRef?: string;
dir?: string;
host?: string;
}
[src]