mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
10 lines
309 B
Nix
10 lines
309 B
Nix
{lib}: let
|
|
typesDag = import ./dag.nix {inherit lib;};
|
|
typesPlugin = import ./plugins.nix {inherit lib;};
|
|
typesLanguage = import ./languages.nix {inherit lib;};
|
|
in {
|
|
inherit (typesDag) dagOf;
|
|
inherit (typesPlugin) pluginsOpt extraPluginType;
|
|
inherit (typesLanguage) diagnostics mkGrammarOption;
|
|
}
|