UNPKG

351 BJavaScriptView Raw
1const { data, number, string } = require("@algebraic/type");
2const { List, Set } = require("@algebraic/collections");
3
4module.exports = data `Compilation` (
5 output => string,
6 dependencies => [List(string), List(string)()],
7 entrypoints => [Set(string), Set(string)()],
8 assets => [Set(string), Set(string)()] );