mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 21:19:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			355 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			355 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { Plugin } from 'ckeditor5';
 | 
						|
import FootnoteEditing from './footnote-editing/footnote-editing.js';
 | 
						|
import FootnoteUI from './footnote-ui.js';
 | 
						|
 | 
						|
export default class Footnotes extends Plugin {
 | 
						|
	public static get pluginName() {
 | 
						|
		return 'Footnotes' as const;
 | 
						|
	}
 | 
						|
 | 
						|
	public static get requires() {
 | 
						|
		return [ FootnoteEditing, FootnoteUI ] as const;
 | 
						|
	}
 | 
						|
}
 |