Skip to content
On this page

plainObject

ts
type plainObject<T = unknown> = {
    readonly [key: string | number]: T
}