@@ -38,16 +38,16 @@ export type PartialCompoundVerb =
3838 } >
3939 & VerbObjects
4040 ) ;
41- export function condenseVerb ( present : string , past : string ) : string {
41+ function condenseVerb ( present : string , past : string ) {
4242 const [ first , ...rest ] = present . split ( " " ) ;
4343 const second = past . split ( " " ) [ 0 ] ;
4444 return [ condense ( first , second ) , ...rest ] . join ( " " ) ;
4545}
46- export function addModal (
46+ function addModal (
4747 modal : string ,
4848 verb : PartialVerb ,
4949 takeNegative : boolean ,
50- ) : PartialVerb {
50+ ) {
5151 if ( verb . modal == null ) {
5252 const newRest = nullableAsArray ( verb . first )
5353 . map ( ( first ) => {
@@ -152,7 +152,7 @@ export function partialVerb(
152152 phraseEmphasis : false ,
153153 } ) ) ;
154154}
155- export function everyPartialVerb (
155+ function everyPartialVerb (
156156 verb : PartialCompoundVerb ,
157157) : ReadonlyArray < PartialVerb > {
158158 switch ( verb . type ) {
@@ -175,13 +175,13 @@ export function forObject(verb: PartialCompoundVerb): boolean | string {
175175 }
176176}
177177// TODO: handle negatives
178- export function fromVerbForms (
178+ function fromVerbForms (
179179 options : Readonly < {
180180 verbForms : Dictionary . VerbForms ;
181181 perspective : Dictionary . Perspective ;
182182 quantity : English . Quantity ;
183183 } > ,
184- ) : IterableResult < Readonly < { modal : null | string ; verb : string } > > {
184+ ) {
185185 const { verbForms, perspective, quantity } = options ;
186186 const is = verbForms . presentSingular === "is" ;
187187 const presentSingular = is && perspective === "first"
0 commit comments