Skip to content

Commit

Permalink
chore: 🤖 change type to export type
Browse files Browse the repository at this point in the history
  • Loading branch information
NetanelBasal committed Dec 23, 2023
1 parent b241b0c commit 68dbb27
Showing 1 changed file with 22 additions and 17 deletions.
39 changes: 22 additions & 17 deletions packages/falso/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export { randBic } from './lib/bic';
export { randBinary } from './lib/binary';
export { randBird } from './lib/bird';
export { randBitcoinAddress } from './lib/bitcoin-address';
export { randBook, Book } from './lib/book';
export { randBook } from './lib/book';
export type { Book } from './lib/book';
export { randBoolean } from './lib/boolean';
export { randBrand } from './lib/brand';
export { randBrowser } from './lib/browser';
Expand Down Expand Up @@ -126,9 +127,11 @@ export { randPersonTitle } from './lib/person-title';
export { randPhoneNumber } from './lib/phone-number';
export { randPhrase } from './lib/phrase';
export { randPort } from './lib/port';
export { randPost, Post } from './lib/post';
export { randPost } from './lib/post';
export type { Post } from './lib/post';
export { randPriority } from './lib/priority';
export { randProduct, Product } from './lib/product';
export { randProduct } from './lib/product';
export type { Product } from './lib/product';
export { randProductAdjective } from './lib/product-adjective';
export { randProductCategory } from './lib/product-category';
export { randProductDescription } from './lib/product-description';
Expand Down Expand Up @@ -163,16 +166,19 @@ export { randStatus } from './lib/status';
export { randStreetAddress } from './lib/street-address';
export { randStreetName } from './lib/street-name';
export { randSubscriptionPlan } from './lib/subscription-plan';
export { randSuperhero, SuperheroEntity } from './lib/superhero';
export { randSuperhero } from './lib/superhero';
export type { SuperheroEntity } from './lib/superhero';
export { randSuperheroName } from './lib/superhero-name';
export { randSvg } from './lib/svg';
export { randSwift } from './lib/swift';
export { randText } from './lib/text';
export { randTimeZone } from './lib/time-zone';
export { randTodo, Todo } from './lib/todo';
export { randTodo } from './lib/todo';
export type { Todo } from './lib/todo';
export { randTransactionType } from './lib/transaction-type';
export { randUrl } from './lib/url';
export { randUser, User } from './lib/user';
export { randUser } from './lib/user';
export type { User } from './lib/user';
export { randUserAgent } from './lib/user-agent';
export { randUserName } from './lib/user-name';
export { randUuid } from './lib/uuid';
Expand All @@ -187,27 +193,26 @@ export { randWord } from './lib/word';
export { randZipCode } from './lib/zip-code';
export { randSinger } from './lib/singer';
export { randSong } from './lib/song';
export { randAddress, Address } from './lib/address';
export { randAddress } from './lib/address';
export type { Address } from './lib/address';
export { randFullAddress } from './lib/full-address';
export { randJSON } from './lib/json';
export { randCodeSnippet } from './lib/code-snippet';
export { randTextRange } from './lib/text-range';
export { randFlightNumber } from './lib/flight-number';
export { randAirline } from './lib/airline';
export { randFlightDetails, FlightDetails } from './lib/flight-details';
export { randFlightDetails } from './lib/flight-details';
export type { FlightDetails } from './lib/flight-details';
export { randSeatNumber } from './lib/seat-number';
export { randAirport } from './lib/airport';
export { randAirportName } from './lib/airport-name';
export { randAirportCode } from './lib/airport-code';
export { randCreditCard, CreditCard } from './lib/credit-card';
export {
incrementalNumber,
IncrementalNumberOptions,
} from './lib/factories/incremental-number';
export {
incrementalDate,
IncrementalDateOptions,
} from './lib/factories/incremental-date';
export { randCreditCard } from './lib/credit-card';
export type { CreditCard } from './lib/credit-card';
export { incrementalNumber } from './lib/factories/incremental-number';
export type { IncrementalNumberOptions } from './lib/factories/incremental-number';
export { incrementalDate } from './lib/factories/incremental-date';
export type { IncrementalDateOptions } from './lib/factories/incremental-date';
export { randAggregation } from './lib/aggregation';
export { randChanceBoolean } from './lib/chance-boolean';
export { toCollection } from './lib/collection';
Expand Down

0 comments on commit 68dbb27

Please sign in to comment.