nvf/lib/types/default.nix
NotAShelf 37d5f249f0
dev: listArgs
a helper function to convert a list of strings to a single string
2023-08-19 12:04:05 +03:00

9 lines
318 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 listArgs;
}