| 44 | } |
| 45 | |
| 46 | export interface IBarbaPlugin<T> { |
| 47 | /** Plugin version */ |
| 48 | version: string; |
| 49 | /** Plugin name */ |
| 50 | name: string; |
| 51 | /** Install method */ |
| 52 | install(barba: Core, options?: T): void; |
| 53 | /** Init method */ |
| 54 | init(): void; |
| 55 | } |
no outgoing calls
no test coverage detected