Skip to content

Commit

Permalink
feat(types): EmptyString
Browse files Browse the repository at this point in the history
  • Loading branch information
unicornware committed Oct 22, 2021
1 parent 4f6f198 commit ccf0af1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/types/empty-string.type.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
* @file Type Definitions - EmptyString
* @module tutils/types/EmptyString
*/

/**
* Type representing an empty string.
*/
type EmptyString = ''

export default EmptyString
1 change: 1 addition & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export type { default as DeepPartialBy } from './deep-partial-by.type'
export type { default as DeepPartial } from './deep-partial.type'
export type { default as DeepPick } from './deep-pick.type'
export type { default as DeepRequired } from './deep-required.type'
export type { default as EmptyString } from './empty-string.type'
export type { default as EmptyValue } from './empty-value.type'
export type { default as FIXME } from './fixme.type'
export type { default as IndexSignature } from './index-signature.type'
Expand Down

0 comments on commit ccf0af1

Please sign in to comment.