chore(utils): consolidate type utils

This commit is contained in:
DecDuck
2024-11-06 11:49:08 +11:00
parent 3c24d88375
commit de1b8aa77e
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import { FilterConditionally } from "./typefilter";
import { FilterConditionally } from "./types";
interface PriorityTagged<T> {
object: T,
@@ -1 +0,0 @@
export type FilterConditionally<Source, Condition> = Pick<Source, { [K in keyof Source]: Source[K] extends Condition ? K : never }[keyof Source]>;