Skip to content

Commit

Permalink
Updated all src/types.ts to add type export prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
NuroDev committed Apr 28, 2024
1 parent 7f64ffb commit e63cd1a
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 45 deletions.
6 changes: 3 additions & 3 deletions packages/hackernews/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "./items/items.types";
export * from "./liveData/liveData.types";
export * from "./users/users.types";
export type * from "./items/items.types";
export type * from "./liveData/liveData.types";
export type * from "./users/users.types";
12 changes: 6 additions & 6 deletions packages/jsonplaceholder/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export * from "./album/album.types";
export * from "./comment/comment.types";
export * from "./photo/photo.types";
export * from "./post/post.types";
export * from "./todo/todo.types";
export * from "./user/user.types";
export type * from "./album/album.types";
export type * from "./comment/comment.types";
export type * from "./photo/photo.types";
export type * from "./post/post.types";
export type * from "./todo/todo.types";
export type * from "./user/user.types";
6 changes: 3 additions & 3 deletions packages/lil.apis/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "./news/news.types";
export * from "./stocks/stocks.types";
export * from "./weather/weather.types";
export type * from "./news/news.types";
export type * from "./stocks/stocks.types";
export type * from "./weather/weather.types";
4 changes: 2 additions & 2 deletions packages/logsnag/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "./log/log.types";
export * from "./insight/insight.types";
export type * from "./log/log.types";
export type * from "./insight/insight.types";
30 changes: 15 additions & 15 deletions packages/spacex/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
export * from "./_shared/_shared.types";
export * from "./capsules/capsules.types";
export * from "./company/company.types";
export * from "./cores/cores.types";
export * from "./crew/crew.types";
export * from "./dragons/dragons.types";
export * from "./history/history.types";
export * from "./landpads/landpads.types";
export * from "./launches/launches.types";
export * from "./launchpads/launchpads.types";
export * from "./payloads/payloads.types";
export * from "./roadster/roadster.types";
export * from "./rockets/rockets.types";
export * from "./ships/ships.types";
export * from "./starlink/starlink.types";
export type * from "./_shared/_shared.types";
export type * from "./capsules/capsules.types";
export type * from "./company/company.types";
export type * from "./cores/cores.types";
export type * from "./crew/crew.types";
export type * from "./dragons/dragons.types";
export type * from "./history/history.types";
export type * from "./landpads/landpads.types";
export type * from "./launches/launches.types";
export type * from "./launchpads/launchpads.types";
export type * from "./payloads/payloads.types";
export type * from "./roadster/roadster.types";
export type * from "./rockets/rockets.types";
export type * from "./ships/ships.types";
export type * from "./starlink/starlink.types";
14 changes: 7 additions & 7 deletions packages/swapi/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export * from "./films/films.types";
export * from "./people/people.types";
export * from "./planets/planets.types";
export * from "./root/root.types";
export * from "./species/species.types";
export * from "./starships/starships.types";
export * from "./vehicles/vehicles.types";
export type * from "./films/films.types";
export type * from "./people/people.types";
export type * from "./planets/planets.types";
export type * from "./root/root.types";
export type * from "./species/species.types";
export type * from "./starships/starships.types";
export type * from "./vehicles/vehicles.types";
18 changes: 9 additions & 9 deletions packages/uuid.rocks/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export * from "./_shared/_shared.types";
export * from "./emoji/emoji.types";
export * from "./hash/hash.types";
export * from "./ip/ip.types";
export * from "./json/json.types";
export * from "./nanoid/nanoid.types";
export * from "./ping-pong/ping-pong.types";
export * from "./plain/plain.types";
export * from "./stats/stats.types";
export type * from "./_shared/_shared.types";
export type * from "./emoji/emoji.types";
export type * from "./hash/hash.types";
export type * from "./ip/ip.types";
export type * from "./json/json.types";
export type * from "./nanoid/nanoid.types";
export type * from "./ping-pong/ping-pong.types";
export type * from "./plain/plain.types";
export type * from "./stats/stats.types";

0 comments on commit e63cd1a

Please sign in to comment.