| // Copyright 2026 The Fuchsia Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| declare module 'jsonparse' { | |
| export default class JsonParser { | |
| onValue: (value: unknown) => void; | |
| onError: (err: Error) => void; | |
| write(data: Buffer | string): void; | |
| stack: unknown[]; | |
| } | |
| } |