mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
ab458a38fa
* replaced public and private access modifiers #5066 * fix: run `deno fmt` * fix: apply suggestions * fix --------- Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { BaseHandler } from "./base_handler.ts";
|
|
|
|
export class TestHandler extends BaseHandler {
|
|
messages: string[] = [];
|
|
|
|
override log(msg: string) {
|
|
this.messages.push(msg);
|
|
}
|
|
}
|