Skip to content

Commit

Permalink
feat: add ext to typescript template
Browse files Browse the repository at this point in the history
  • Loading branch information
PhearZero committed Oct 18, 2023
1 parent 690bdba commit 6940872
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions typescript_templates/model.vm
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,12 @@ typeof $value !== 'undefined' ? $assignment : undefined##
*/

/* eslint-disable no-use-before-define */
import { base64ToBytes } from '../../../../encoding/binarydata';
import { base64ToBytes } from '../../../../encoding/binarydata.js';
#if ( $propFile.indexer == "false" )
import BlockHeader from '../../../../types/blockHeader';
import { EncodedSignedTransaction } from '../../../../types/transactions/encoded';
import BlockHeader from '../../../../types/blockHeader.js';
import { EncodedSignedTransaction } from '../../../../types/transactions/encoded.js';
#end
import BaseModel from '../../basemodel';
import BaseModel from '../../basemodel.js';

#foreach( $modelEntry in $models.entrySet() )
#set( $def = $modelEntry.key )
Expand Down

0 comments on commit 6940872

Please sign in to comment.