Skip to content

Commit

Permalink
fix: export Forms type
Browse files Browse the repository at this point in the history
  • Loading branch information
pleshevskiy committed Apr 7, 2020
1 parent a68d368 commit 5685a99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rusn",
"version": "1.0.3",
"version": "1.0.5",
"description": "Portable from python package small library for getting russian text with singular and plural forms",
"main": "./src/index.js",
"types": "./src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


type Forms = [string, string, string] | string
export type Forms = [string, string, string] | string


export const rusNGetText = (number: number, forms: Forms): string => {
Expand Down

0 comments on commit 5685a99

Please sign in to comment.