2024-04-08 00:28:49 +00:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
2023-03-31 14:42:15 +00:00
|
|
|
typesDag = import ./dag.nix {inherit lib;};
|
2024-04-08 00:28:49 +00:00
|
|
|
typesPlugin = import ./plugins.nix {inherit inputs lib;};
|
2023-04-17 20:27:27 +00:00
|
|
|
typesLanguage = import ./languages.nix {inherit lib;};
|
2024-07-11 22:49:44 +00:00
|
|
|
typesCustom = import ./custom.nix {inherit lib;};
|
2023-03-31 14:42:15 +00:00
|
|
|
in {
|
|
|
|
inherit (typesDag) dagOf;
|
2024-07-10 19:58:37 +00:00
|
|
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType;
|
2023-04-17 21:55:27 +00:00
|
|
|
inherit (typesLanguage) diagnostics mkGrammarOption;
|
2024-07-12 15:47:33 +00:00
|
|
|
inherit (typesCustom) anythingConcatLists char;
|
2023-03-31 14:42:15 +00:00
|
|
|
}
|