UNPKG

@storm-stack/types

Version:

⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.

9 lines (8 loc) 313 B
import { ITyped } from "../utility-types/base"; /** * Check if the provided value has a `__typename` property * * @param value - The value to type check * @returns An indicator specifying if the value provided has a `__typename` property */ export declare const isTyped: (value: unknown) => value is ITyped;