UNPKG

file-lane

Version:

File conversion tool, can be one-to-one, one to N, N to one

11 lines (10 loc) 253 B
import FileLaneCompilation from '../FileLaneCompilation'; import IFileLaneContext from './IFileLaneContext'; /** * IPlugin */ export default interface IPlugin { context: IFileLaneContext; compilation: FileLaneCompilation; apply(): void; }