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

ImportedFlake

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

Methods for obtaining apps, checks, dev-shells, and packages from an imported flake file to include in your garn project.

type ImportedFlake = {
allChecks: Check;
allPackages: Package;
getApp: (appName: string) => Executable;
getCheck: (checkName: string) => Check;
getDevShell: (devShellName: string) => Environment;
getPackage: (packageName: string) => Package;
}
;

§Type

§
{
allChecks: Check;
allPackages: Package;
getApp: (appName: string) => Executable;
getCheck: (checkName: string) => Check;
getDevShell: (devShellName: string) => Environment;
getPackage: (packageName: string) => Package;
}
[src]