english-verbs-helper
Advanced tools
Comparing version 2.2.4 to 2.2.5
@@ -7,4 +7,9 @@ /** | ||
export declare type Numbers = 'S' | 'P'; | ||
import { EnglishGerunds } from 'english-verbs-gerunds'; | ||
import { EnglishVerbsIrregular } from 'english-verbs-irregular'; | ||
interface EnglishGerunds { | ||
[inf: string]: string; | ||
} | ||
interface EnglishVerbsIrregular { | ||
[key: string]: EnglishVerbIrregular; | ||
} | ||
declare type EnglishVerbIrregular = string[][]; | ||
export interface VerbsInfo { | ||
@@ -22,1 +27,2 @@ [key: string]: VerbInfo; | ||
export declare function getConjugation(verbsInfo: VerbsInfo, verb: string, tense: string, number: Numbers, extraParams: ExtraParams): string; | ||
export {}; |
{ | ||
"name": "english-verbs-helper", | ||
"version": "2.2.4", | ||
"version": "2.2.5", | ||
"description": "English verbs conjugation", | ||
@@ -48,4 +48,4 @@ "main": "dist/index.js", | ||
"devDependencies": { | ||
"english-verbs-gerunds": "2.2.4", | ||
"english-verbs-irregular": "2.2.4" | ||
"english-verbs-gerunds": "2.2.5", | ||
"english-verbs-irregular": "2.2.5" | ||
}, | ||
@@ -63,3 +63,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "55785ef79e2c4931c37360e308130b75a7b2cb8d" | ||
"gitHead": "882e817aa6e0e5a2a666fd76af1c0f46a5045863" | ||
} |
@@ -15,2 +15,4 @@ <!-- | ||
These resources are not declared as dependencies so that they are not automatically bundled in a browser package. | ||
If you do not provide linguistic resources, very basic rules will be used: adding `ing` for gerunds, and `ed` for past and participles. | ||
@@ -17,0 +19,0 @@ |
Sorry, the diff of this file is not supported yet
34078
322
69