mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 19:12:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			486 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			486 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   lib,
 | |
|   self,
 | |
| }: let
 | |
|   typesDag = import ./dag.nix {inherit lib;};
 | |
|   typesPlugin = import ./plugins.nix {inherit lib self;};
 | |
|   typesLanguage = import ./languages.nix {inherit lib;};
 | |
|   customTypes = import ./custom.nix {inherit lib;};
 | |
| in {
 | |
|   inherit (typesDag) dagOf;
 | |
|   inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType borderType;
 | |
|   inherit (typesLanguage) diagnostics mkGrammarOption;
 | |
|   inherit (customTypes) char hexColor mergelessListOf;
 | |
| }
 | 
