Declare your injections, or risk losing them!

When using Ember + TypeScript, the recommendation thus far for service injections has been to mark them as definite with ! (since they are not initialized in the class, but by the service injection decorator), e.g. import { inject as service } from '@ember/service'; export default class MyComponent extends Component { @service…