/*! * @author electricessence / https://github.com/electricessence/ * Licensing: MIT */ import type { Selector } from '@tsdotnet/common-interfaces'; type KeyOf = keyof T; type Keys = KeyOf[]; type ValueOf = T[keyof T]; export default function createKeySelector>(...keys: Keys): Selector>>; export {};