Skip to content

Commit

Permalink
fix(api): export event context symbols
Browse files Browse the repository at this point in the history
fixes #503
  • Loading branch information
gund committed Mar 15, 2023
1 parent a0b8497 commit c5bbaf6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions goldens/ng-dynamic-component/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,12 @@ export interface InputsType {
// @public (undocumented)
export const IoEventArgumentToken: InjectionToken<string>;

// @public
export const IoEventContextProviderToken: InjectionToken<StaticProvider>;

// @public
export const IoEventContextToken: InjectionToken<unknown>;

// @public (undocumented)
export class IoFactoryService {
constructor(injector: Injector);
Expand Down
1 change: 1 addition & 0 deletions projects/ng-dynamic-component/src/lib/io/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * from './types';
export * from './event-argument';
export * from './event-context';
export * from './io.service';
export * from './io-factory.service';

0 comments on commit c5bbaf6

Please sign in to comment.