| 123 | import { Logger } from 'embark-logger'; |
| 124 | |
| 125 | export interface Embark { |
| 126 | env: string; |
| 127 | pluginConfig: any; |
| 128 | events: EmbarkEvents; |
| 129 | plugins: EmbarkPlugins; |
| 130 | registerAPICall(method: string, endpoint: string, cb: (...args: any[]) => void): void; |
| 131 | registerConsoleCommand: any; |
| 132 | logger: Logger; |
| 133 | fs: any; |
| 134 | config: Configuration; |
| 135 | currentContext: string[]; |
| 136 | registerActionForEvent<T>( |
| 137 | name: string, |
| 138 | options?: ActionCallback<T> | { priority: number; }, |
| 139 | action?: ActionCallback<T>, |
| 140 | ): void; |
| 141 | } |
| 142 | |
| 143 | export { ProcessLauncher } from './processes/processLauncher'; |
| 144 | export { ProcessWrapper } from './processes/processWrapper'; |
no outgoing calls
no test coverage detected