Posting here for others to use. Create a file in your project with the following contents ##### app/ember-cli-document-title.d.ts ```ts declare module 'ember' { namespace Ember { interface Route { title: string; } } } ```