(v any)
| 12 | // Core the api for json codec. |
| 13 | type Core interface { |
| 14 | Marshal(v any) ([]byte, error) |
| 15 | Unmarshal(data []byte, v any) error |
| 16 | MarshalIndent(v any, prefix, indent string) ([]byte, error) |
| 17 | NewEncoder(writer io.Writer) Encoder |
no outgoing calls