(schemaOrOptions?: Schema<A, I, R> | ParseJsonOptions, o?: ParseJsonOptions)
| 4846 | <S extends Schema.Any>(schema: S, options?: ParseJsonOptions): transform<SchemaClass<unknown, string>, S> |
| 4847 | (options?: ParseJsonOptions): SchemaClass<unknown, string> |
| 4848 | } = <A, I, R>(schemaOrOptions?: Schema<A, I, R> | ParseJsonOptions, o?: ParseJsonOptions) => |
| 4849 | isSchema(schemaOrOptions) |
| 4850 | ? compose(parseJson(o), schemaOrOptions) as any |
| 4851 | : getParseJsonTransformation(schemaOrOptions as ParseJsonOptions | undefined) |
| 4852 | |
| 4853 | /** |
| 4854 | * @category string constructors |
nothing calls this directly
no test coverage detected
searching dependent graphs…