nvf/lib/types/default.nix

10 lines
293 B
Nix
Raw Normal View History

2023-03-31 14:42:15 +00:00
{lib}: let
typesDag = import ./dag.nix {inherit lib;};
typesPlugin = import ./plugins.nix {inherit lib;};
typesLanguage = import ./languages.nix {inherit lib;};
2023-03-31 14:42:15 +00:00
in {
inherit (typesDag) dagOf;
inherit (typesPlugin) pluginsOpt;
2023-04-17 21:55:27 +00:00
inherit (typesLanguage) diagnostics mkGrammarOption;
2023-03-31 14:42:15 +00:00
}