/** * makes all properties of `T` readonly * * @since 0.0.2 */ export type Readonly = { readonly [K in keyof T]: T[K]; }; //# sourceMappingURL=readonly.d.ts.map