Skip to content

Commit

Permalink
Fix utility type export
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkucharczyk committed Sep 21, 2023
1 parent 1ff8782 commit c9b0a24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ember-context/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export { createContext } from './-private/create-context';
export type { contextValueType } from './-private/create-context';
export { inject } from './-private/inject';
2 changes: 1 addition & 1 deletion test-app/app/components/test-component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Component from '@glimmer/component';
import { inject as context } from '@customerio/ember-context';
import { NumberContext } from 'test-app/controllers/application';
import { contextValueType } from '@customerio/ember-context/create-context-6359e4ca';
import type { contextValueType } from '@customerio/ember-context';

export default class TestComponent extends Component {
@context(NumberContext) contextValue!: contextValueType<typeof NumberContext>;
Expand Down

0 comments on commit c9b0a24

Please sign in to comment.