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

haskell.mkHaskellProject

import { haskell } from "https://garn.io/ts/v0.0.16/mod.ts"; 

const { mkHaskellProject } = haskell;

Creates a haskell-based garn Project.

function mkHaskellProject(args: {
description: string;
executable: string;
compiler: string;
src: string;
}
): Project & {
pkg: Package;
}
;
§
mkHaskellProject(args: {
description: string;
executable: string;
compiler: string;
src: string;
}
): Project & {
pkg: Package;
}
[src]

§Parameters

§
args: {
description: string;
executable: string;
compiler: string;
src: string;
}
[src]

§Return Type