UNPKG

@younho9/types

Version:

A set of utility types for TypeScript

9 lines (7 loc) 181 B
import type {ToString} from './to-string.js'; /** * @category Object */ export type StringKeyOf<ObjectType extends object> = Array< ToString<keyof Omit<ObjectType, symbol>> >;