UNPKG

@storm-stack/types

Version:

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

8 lines (7 loc) 271 B
/** * Checks if the given value is an object index. * * @param value - The value to check. * @returns Returns `true` if the value is an object index, otherwise `false`. */ export declare function isObjectIndex(value: PropertyKey): value is string | number | symbol;