ember-cli-document-title icon indicating copy to clipboard operation
ember-cli-document-title copied to clipboard

TypeScript ambient type information

Open mike-north opened this issue 8 years ago • 0 comments

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;
    }
  }
}

mike-north avatar Dec 29 '17 17:12 mike-north