Skip to content

Commit

Permalink
Update index.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north authored Jan 22, 2018
1 parent 800c49f commit d413662
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ declare module 'ember' {
*/
namespace Ember {
interface Route {
titleToken: string;
title: string;
titleToken: string | (() => string) | (() => string[]) (() => PromiseLike<string>) | (() => PromiseLike<string[]>);
title: string | () => string;
setTitle: (title: string) => void;
}
}
Expand Down

0 comments on commit d413662

Please sign in to comment.