Skip to content
This repository has been archived by the owner on Sep 3, 2023. It is now read-only.

Commit

Permalink
fix: consistent exports of node types
Browse files Browse the repository at this point in the history
  • Loading branch information
harlan-zw committed Aug 15, 2022
1 parent 764800e commit d44399c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/nodes/Event/Place/index.ts
Expand Up @@ -9,7 +9,7 @@ export interface PlaceLite extends Thing {
address: NodeRelation<PostalAddress>
}

export type Place = PlaceLite
export interface Place extends PlaceLite {}

/**
* Describes a HowTo guide, which contains a series of steps.
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/Event/VirtualLocation/index.ts
Expand Up @@ -6,7 +6,7 @@ export interface VirtualLocationLite extends Thing {
url: string
}

export type VirtualLocation = VirtualLocationLite
export interface VirtualLocation extends VirtualLocationLite {}

/**
* Describes a HowTo guide, which contains a series of steps.
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/HowTo/HowToStep/index.ts
Expand Up @@ -39,7 +39,7 @@ export interface HowToStepLite extends Thing {
itemListElement?: NodeRelations<HowToDirection | string>[]
}

export type HowToStep = HowToStepLite
export interface HowToStep extends HowToStepLite {}

/**
* Describes a HowTo guide, which contains a series of steps.
Expand Down

0 comments on commit d44399c

Please sign in to comment.