Which package(s) does this enhancement pertain to?
Please write a user story for this feature
As a developer I want to import @tracked from @glimmer/tracking. I don't understand how to do that.
As a workaround I've added glimmer.d.ts:
declare module "@glimmer/tracking" {
export function tracked(target: object, propertyKey: string | symbol): void;
}
Which package(s) does this enhancement pertain to?
Please write a user story for this feature
As a developer I want to import
@trackedfrom@glimmer/tracking. I don't understand how to do that.As a workaround I've added
glimmer.d.ts: