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

Commit

Permalink
docs(index): add jsdoc property tags
Browse files Browse the repository at this point in the history
  • Loading branch information
TMUniversal committed Feb 14, 2022
1 parent a3100ea commit 0802ccc
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
/// <reference path="../index.d.ts" />

import validators from './Validators'
import arrayHelper from './ArrayHelper'
import stringHelper from './StringHelper'
import ArrayHelper from './ArrayHelper'
import StringHelper from './StringHelper'
import Validators from './Validators'

/**
* All utility packaged
* @property {ArrayHelper} arrayHelper
* @property {StringHelper} stringHelper
* @property {Validators} validators
*/
const util = {
validators,
arrayHelper,
stringHelper
validators: Validators,
arrayHelper: ArrayHelper,
stringHelper: StringHelper
}

module.exports = util
Expand Down

0 comments on commit 0802ccc

Please sign in to comment.