Skip to content

Commit

Permalink
Merge pull request #702 from didoo/expose-signatures
Browse files Browse the repository at this point in the history
Export `Portal` and `PortalTarget` signatures
  • Loading branch information
simonihmig authored Oct 28, 2024
2 parents 91b17c7 + 0cf5270 commit 65ac363
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ember-stargate/src/components/portal-target.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { inject as service } from '@ember/service';
import { assert } from '@ember/debug';
import type PortalService from '../services/-portal';

interface PortalTargetSignature {
export interface PortalTargetSignature {
Element: HTMLDivElement;
Args: {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion ember-stargate/src/components/portal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function PortalTrackerResource(inputFn: () => string): Tracker {
});
}

interface PortalSignature {
export interface PortalSignature {
Args: {
target: string;
renderInPlace?: boolean;
Expand Down

0 comments on commit 65ac363

Please sign in to comment.