2025-02-06 17:43:54 +03:00
|
|
|
{lib}: let
|
2023-03-31 17:42:15 +03:00
|
|
|
typesDag = import ./dag.nix {inherit lib;};
|
2025-02-06 17:43:54 +03:00
|
|
|
typesPlugin = import ./plugins.nix {inherit lib;};
|
2023-04-17 23:27:27 +03:00
|
|
|
typesLanguage = import ./languages.nix {inherit lib;};
|
2024-10-09 19:50:34 +02:00
|
|
|
customTypes = import ./custom.nix {inherit lib;};
|
2023-03-31 17:42:15 +03:00
|
|
|
in {
|
|
|
|
inherit (typesDag) dagOf;
|
2024-09-13 18:34:21 +02:00
|
|
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType borderType;
|
2023-04-18 00:55:27 +03:00
|
|
|
inherit (typesLanguage) diagnostics mkGrammarOption;
|
2024-12-22 23:00:26 +01:00
|
|
|
inherit (customTypes) char hexColor mergelessListOf;
|
2023-03-31 17:42:15 +03:00
|
|
|
}
|