| 63 | * @advanced |
| 64 | */ |
| 65 | export interface ApplicationPlugin |
| 66 | { |
| 67 | /** |
| 68 | * Called when Application is constructed, scoped to Application instance. |
| 69 | * Passes in `options` as the only argument, which are Application `init()` options. |
| 70 | * @param {object} options - Application options. |
| 71 | */ |
| 72 | init(options: Partial<ApplicationOptions>): void; |
| 73 | /** Called when destroying Application, scoped to Application instance. */ |
| 74 | destroy(): void; |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Application options supplied to the {@link Application#init} method. |
no outgoing calls
no test coverage detected