13 lines
		
	
	
		
			300 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			300 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
declare namespace org {
 | 
						|
    namespace bukkit {
 | 
						|
        // @ts-ignore
 | 
						|
        interface UndefinedNullability {
 | 
						|
            /**
 | 
						|
             * Human readable description of the circumstances, in which the type is
 | 
						|
             * nullable.
 | 
						|
             */
 | 
						|
             value(): string;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |