Skip to content

Commit

Permalink
fix lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Feb 2, 2022
1 parent 19454f1 commit d49aa2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Program.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { ParseMode } from './parser/Parser';
import { TokenKind } from './lexer/TokenKind';
import { BscPlugin } from './bscPlugin/BscPlugin';
import { AstEditor } from './astUtils/AstEditor';
import { SourceMapGenerator } from 'source-map';
import type { SourceMapGenerator } from 'source-map';
const startOfSourcePkgPath = `source${path.sep}`;
const bslibNonAliasedRokuModulesPkgPath = s`source/roku_modules/rokucommunity_bslib/bslib.brs`;
const bslibAliasedRokuModulesPkgPath = s`source/roku_modules/bslib/bslib.brs`;
Expand Down Expand Up @@ -1389,7 +1389,7 @@ export class Program {
}
}

interface FileTranspileResult {
export interface FileTranspileResult {
pathAbsolute: string;
pkgPath: string;
code: string;
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import type { ProgramBuilder } from './ProgramBuilder';
import type { FunctionStatement } from './parser/Statement';
import type { Expression } from './parser/Expression';
import type { TranspileState } from './parser/TranspileState';
import type { CodeWithSourceMap, SourceMapGenerator, SourceNode } from 'source-map';
import type { SourceMapGenerator, SourceNode } from 'source-map';
import type { BscType } from './types/BscType';
import type { AstEditor } from './astUtils/AstEditor';

Expand Down

0 comments on commit d49aa2e

Please sign in to comment.