docs: change implements to extends (#10219)

This commit is contained in:
Cody Tseng 2023-07-22 15:52:43 +08:00 committed by GitHub
parent dff2d53b4e
commit ff6e8751d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,7 +120,7 @@ Or you can extend the `AbstractLogger` class:
```typescript
import { AbstractLogger } from "typeorm"
export class MyCustomLogger implements AbstractLogger {
export class MyCustomLogger extends AbstractLogger {
/**
* Write log to specific output.
*/