@tldraw/state
Version:
tldraw infinite canvas SDK (state).
26 lines (23 loc) • 511 B
JavaScript
let didWarnComputedGetter = false;
function logComputedGetterWarning() {
if (didWarnComputedGetter) return;
didWarnComputedGetter = true;
console.warn(
`Using \`\` as a decorator for getters is deprecated and will be removed in the near future. Please refactor to use \`\` as a decorator for methods.
// Before
get foo() {
return 'foo'
}
// After
getFoo() {
return 'foo'
}
`
);
}
export {
logComputedGetterWarning
};
//# sourceMappingURL=warnings.mjs.map