{"version":3,"sources":["../../../src/shared/lib/deep-readonly.ts"],"sourcesContent":["/**\n * A type that represents a deeply readonly object. This is similar to\n * TypeScript's `Readonly` type, but it recursively applies the `readonly`\n * modifier to all properties of an object and all elements of arrays.\n */\nexport type DeepReadonly = T extends (infer R)[]\n ? ReadonlyArray>\n : T extends object\n ? {\n readonly [K in keyof T]: DeepReadonly\n }\n : T\n"],"names":[],"mappings":"AAAA;;;;CAIC","ignoreList":[0]}