UNPKG

@hakuna-matata-ui/utils

Version:
43 lines (34 loc) 839 B
export type Merge<T, P> = P & Omit<T, keyof P> export type UnionStringArray<T extends Readonly<string[]>> = T[number] export type Omit<T, K> = Pick<T, Exclude<keyof T, K>> export type LiteralUnion<T extends U, U extends any = string> = | T | (U & { _?: never }) export type AnyFunction<T = any> = (...args: T[]) => any export type FunctionArguments<T extends Function> = T extends ( ...args: infer R ) => any ? R : never export type Dict<T = any> = Record<string, T> export type Booleanish = boolean | "true" | "false" export type StringOrNumber = string | number export type EventKeys = | "ArrowDown" | "ArrowUp" | "ArrowLeft" | "ArrowRight" | "Enter" | "Space" | "Tab" | "Backspace" | "Control" | "Meta" | "Home" | "End" | "PageDown" | "PageUp" | "Delete" | "Escape" | " " | "Shift"