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-10-09 17:50:34 +00:00
|
|
|
customTypes = import ./custom.nix {inherit lib;};
|
2023-03-31 14:42:15 +00:00
|
|
|
in {
|
|
|
|
inherit (typesDag) dagOf;
|
2024-09-13 16:34:21 +00:00
|
|
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType borderType;
|
2023-04-17 21:55:27 +00:00
|
|
|
inherit (typesLanguage) diagnostics mkGrammarOption;
|
2024-10-09 17:50:34 +00:00
|
|
|
inherit (customTypes) anythingConcatLists char hexColor mergelessListOf;
|
2023-03-31 14:42:15 +00:00
|
|
|
}
|