Skip to the content.

Type Alias: Readonly<T>

type Readonly<T> = { readonly [P in keyof T]: T[P] };

Defined in: node_modules/typescript/lib/lib.es5.d.ts:1597

Make all properties in T readonly

Type Parameters

T

T