2024-04-08 02:28:49 +02:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
2023-03-31 16:42:15 +02:00
|
|
|
typesDag = import ./dag.nix {inherit lib;};
|
2024-04-08 02:28:49 +02:00
|
|
|
typesPlugin = import ./plugins.nix {inherit inputs lib;};
|
2023-04-17 22:27:27 +02:00
|
|
|
typesLanguage = import ./languages.nix {inherit lib;};
|
2024-07-12 00:49:44 +02:00
|
|
|
typesCustom = import ./custom.nix {inherit lib;};
|
2023-03-31 16:42:15 +02:00
|
|
|
in {
|
|
|
|
inherit (typesDag) dagOf;
|
2024-09-13 18:34:21 +02:00
|
|
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType borderType;
|
2023-04-17 23:55:27 +02:00
|
|
|
inherit (typesLanguage) diagnostics mkGrammarOption;
|
2024-07-12 17:47:33 +02:00
|
|
|
inherit (typesCustom) anythingConcatLists char;
|
2023-03-31 16:42:15 +02:00
|
|
|
}
|