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