Skip to content

PropertyValues<T>

A type that represents the values of an object.

Import:

import type { PropertyValues } from 'obsidian-dev-utils/type';

Signature:

export type PropertyValues<T extends object>

Signature:

type PropertyValues<T> = T[StringKeys<T>]

Type: T[StringKeys<T>]