export interface Obj { [key: string]: unknown; } export declare function isObj(value: unknown): value is Obj; export declare function isDef(value: T): value is NonNullable; export declare function isPresent(value: T): value is NonNullable; /** * @see https://stackoverflow.com/a/175787/3786294 */ export declare function isNumeric(str: string): boolean; export declare function messageOf(error: unknown): string; export declare function omitProperty(obj: T, propName: P): Omit; //# sourceMappingURL=tiny-helpers.d.ts.map