chore: Replace `implements` to `extends` for Crypto

This commit is contained in:
microshine 2020-08-10 14:16:25 +03:00
parent 6ae140e83d
commit 2f7c9af674
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import crypto from "crypto";
import * as core from "webcrypto-core";
import { SubtleCrypto } from "./subtle";
export class Crypto implements core.Crypto {
export class Crypto extends core.Crypto {
public subtle = new SubtleCrypto();