chore: remove unused imports
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import { Fn, PartialApply, unset, _ } from "../core/Core";
|
||||
import { Functions } from "../functions/Functions";
|
||||
import * as Impl from "./impl/match";
|
||||
|
||||
/**
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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 {
|
||||
/**
|
||||
|
||||
@@ -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 =
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import {
|
||||
Booleans,
|
||||
Call,
|
||||
Functions,
|
||||
Match,
|
||||
Numbers,
|
||||
Objects,
|
||||
|
||||
@@ -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";
|
||||
|
||||
|
||||
@@ -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";
|
||||
|
||||
|
||||
@@ -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";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user