chore: remove unused imports

This commit is contained in:
Mert Ciflikli
2023-04-23 20:54:26 +02:00
parent 0968fcf200
commit ec82b24439
12 changed files with 5 additions and 19 deletions

View File

@@ -1,8 +1,6 @@
import { Equal, Every, Some } from "../helpers";
import { Compose, Fn, PartialApply, unset } from "../core/Core";
import { Functions } from "../functions/Functions";
export namespace Booleans {
type ExtendsImpl<a, b> = [a] extends [b] ? true : false;

View File

@@ -1,4 +1,4 @@
import { Fn, PartialApply, unset, _, Call } from "../core/Core";
import { Fn, PartialApply, unset, _ } from "../core/Core";
export namespace Functions {
type ParametersImpl<fn> = fn extends (...args: infer args) => any

View File

@@ -1,5 +1,4 @@
import { Fn, PartialApply, unset, _ } from "../core/Core";
import { Functions } from "../functions/Functions";
import * as Impl from "./impl/match";
/**

View File

@@ -1,5 +1,4 @@
import { arg, Call, Fn, PartialApply, unset } from "../../core/Core";
import { Functions } from "../../functions/Functions";
import { Primitive, UnionToIntersection } from "../../helpers";
type GetWithDefault<Obj, K, Def> = K extends keyof Obj ? Obj[K] : Def;

View File

@@ -1,6 +1,5 @@
import { Call, Fn, PartialApply, unset, _ } from "../core/Core";
import { Fn, PartialApply, unset, _ } from "../core/Core";
import * as Impl from "./impl/numbers";
import { Functions } from "../functions/Functions";
export namespace Numbers {
/**

View File

@@ -3,7 +3,6 @@ import { Std } from "../std/Std";
import { Tuples } from "../tuples/Tuples";
import * as H from "../helpers";
import * as Impl from "./impl/strings";
import { Functions } from "../functions/Functions";
export namespace Strings {
export type Stringifiable =

View File

@@ -10,12 +10,7 @@ import {
unset,
_,
} from "../core/Core";
import {
Iterator,
Prettify,
Stringifiable,
UnionToIntersection,
} from "../helpers";
import { Iterator, Prettify, Stringifiable } from "../helpers";
import { Objects } from "../objects/Objects";
import * as NumberImpls from "../numbers/impl/numbers";
import { Std } from "../std/Std";

View File

@@ -1,5 +1,4 @@
import { Call, Fn, PartialApply, unset, _ } from "../core/Core";
import { Functions } from "../functions/Functions";
import { UnionToIntersection, UnionToTuple } from "../helpers";
import { Std } from "../std/Std";
import { Tuples } from "../tuples/Tuples";

View File

@@ -1,7 +1,6 @@
import {
Booleans,
Call,
Functions,
Match,
Numbers,
Objects,

View File

@@ -1,4 +1,4 @@
import { _, $, Numbers, Strings, Tuples } from "../src/index";
import { _, $, Strings } from "../src/index";
import { Compose } from "../src/internals/core/Core";
import { Equal, Expect } from "../src/internals/helpers";

View File

@@ -2,7 +2,6 @@ import { Booleans } from "../src/internals/booleans/Booleans";
import { Call, Fn, Pipe, _ } from "../src/internals/core/Core";
import { Equal, Expect } from "../src/internals/helpers";
import { Numbers } from "../src/internals/numbers/Numbers";
import { Objects } from "../src/internals/objects/Objects";
import { Strings } from "../src/internals/strings/Strings";
import { Tuples } from "../src/internals/tuples/Tuples";

View File

@@ -1,4 +1,4 @@
import { Pipe, Fn, B, U, F, Call, Unions, _ } from "../src/index";
import { Pipe, Fn, B, U, Call, Unions, _ } from "../src/index";
import { Compose } from "../src/internals/core/Core";
import { Equal, Expect, Extends } from "../src/internals/helpers";