7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
import { RegisterOptions } from './register-options.type'
|
|
|
|
export interface PluginLibrary {
|
|
register: (options: RegisterOptions) => void
|
|
unregister: () => Promise<any>
|
|
}
|