@ember/app-blueprint
Version:
Blueprint for next generation of Ember apps
11 lines (9 loc) • 329 B
text/typescript
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @typescript-eslint/no-explicit-any */
import type Application from '@ember/application';
export default {
name: 'test-init',
initialize(application: Application) {
(application as any).__test_init = 'coming from the initializer';
},
};