Skip to content

Commit

Permalink
Fix prettier issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Feb 3, 2020
1 parent 63f9f45 commit a33a246
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 7 additions & 1 deletion packages/@ember/-internals/metal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,13 @@ export { default as expandProperties } from './lib/expand_properties';
export { addObserver, activateObserver, removeObserver, flushAsyncObservers } from './lib/observer';
export { Mixin, aliasMethod, mixin, observer, applyMixin } from './lib/mixin';
export { default as inject, DEBUG_INJECTION_FUNCTIONS } from './lib/injected_property';
export { tagForProperty, createTagForProperty, tagFor, markObjectAsDirty, CUSTOM_TAG_FOR } from './lib/tags';
export {
tagForProperty,
createTagForProperty,
tagFor,
markObjectAsDirty,
CUSTOM_TAG_FOR,
} from './lib/tags';
export {
consume,
Tracker,
Expand Down
6 changes: 5 additions & 1 deletion packages/@ember/-internals/metal/lib/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ export function tagForProperty(object: any, propertyKey: string | symbol, _meta?
return createTagForProperty(object, propertyKey);
}

export function createTagForProperty(object: object, propertyKey: string | symbol, _meta?: Meta): Tag {
export function createTagForProperty(
object: object,
propertyKey: string | symbol,
_meta?: Meta
): Tag {
let meta = _meta === undefined ? metaFor(object) : _meta;

let tags = meta.writableTags();
Expand Down

0 comments on commit a33a246

Please sign in to comment.