14 lines
		
	
	
		
			303 B
		
	
	
	
		
			TypeScript
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			303 B
		
	
	
	
		
			TypeScript
		
	
	
	
import { help } from './apiHelp.ts';
 | 
						|
import { allowBlock } from './allowBlock.ts';
 | 
						|
import { deleteGuild } from './deleteGuild.ts';
 | 
						|
import { status } from './status.ts';
 | 
						|
import { showHideWarn } from './showHideWarn.ts';
 | 
						|
 | 
						|
export default {
 | 
						|
  help,
 | 
						|
  allowBlock,
 | 
						|
  deleteGuild,
 | 
						|
  status,
 | 
						|
  showHideWarn,
 | 
						|
};
 |