Skip to content

Commit

Permalink
feat(reflectToAttr): remove deprecated prop reflectToAttr
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Aug 4, 2020
1 parent 133dd49 commit 6eae6f8
Showing 1 changed file with 0 additions and 6 deletions.
Expand Up @@ -102,12 +102,6 @@ const getReflect = (_diagnostics: d.Diagnostic[], propOptions: d.PropOptions) =>
return propOptions.reflect;
}

if (typeof (propOptions as any).reflectToAttr === 'boolean') {
// const diagnostic = buildWarn(diagnostics);
// diagnostic.messageText = `@Prop option "reflectToAttr" has been depreciated. Please use "reflect" instead.`;
return (propOptions as any).reflectToAttr;
}

return false;
};

Expand Down

0 comments on commit 6eae6f8

Please sign in to comment.