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

Commit

Permalink
feat(conf): add types for users config
Browse files Browse the repository at this point in the history
  • Loading branch information
beetcb committed May 10, 2021
1 parent cc7f8f9 commit 1c80095
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions types/conf.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export type UsersConf = {
users: Array<UserConfOpts>
}

export type UserConfOpts = {
username: string
password: string
alias?: string
school: string
addr: string | Array<string>
}

0 comments on commit 1c80095

Please sign in to comment.