UNPKG

topkat-utils

Version:

A comprehensive collection of TypeScript/JavaScript utility functions for common programming tasks. Includes validation, object manipulation, date handling, string formatting, and more. Zero dependencies, fully typed, and optimized for performance.

6 lines (5 loc) 181 B
export declare type ObjectGeneric = { [k: string]: any; }; export declare type Color = [number, number, number]; export declare type Override<T1, T2> = Omit<T1, keyof T2> & T2;