blob: d5fcdacb82d1b5e53fa05fba63d41f0454fb1141 [file]
// 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[];
}
}