Skip to content

Commit

Permalink
rm unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rsek committed Apr 4, 2022
1 parent f8b3fb1 commit 67f1511
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/functions/md/getTableByOracleId.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import jsonpath from "jsonpath";
import { is } from "typescript-is";
import type IOracle from "../../types/oracles/interfaces/IOracle.js";
import type IOracleBase from "../../types/oracles/interfaces/IOracleBase.js";
import type IRow from "../../types/oracles/interfaces/IRow.js";
import type OracleTableId from "../../types/oracles/OracleTableId.js";
import badJsonError from "../logging/badJsonError.js";

export default function getTableByOracleId(oracleData: IOracleBase | IOracleBase[], id: OracleTableId) {
if (!Array.isArray(oracleData) && oracleData.$id === id) {
Expand Down
1 change: 0 additions & 1 deletion src/functions/object-transform/extractRowContent.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { is } from "typescript-is";
import type { IRowContentYaml } from "../../types/oracles/interfaces/yaml/IRowYaml.js";
import type IRowYaml from "../../types/oracles/interfaces/yaml/IRowYaml.js";
import badJsonError from "../logging/badJsonError.js";

export default function extractRowContent(row: IRowYaml | IRowContentYaml): IRowContentYaml {
// if (!is<IRowYaml | IRowContentYaml>(row)) {
Expand Down

0 comments on commit 67f1511

Please sign in to comment.