Converted all nodejs imports to node: prefix

This commit is contained in:
Alexander Cerutti
2024-10-12 00:23:07 +02:00
parent 2406414e40
commit 474662a1a8
16 changed files with 27 additions and 27 deletions

View File

@@ -1,4 +1,4 @@
import { Buffer } from "buffer";
import { Buffer } from "node:buffer";
import Joi from "joi";
export interface CertificatesSchema {

View File

@@ -9,7 +9,7 @@ export * from "./Personalize";
export * from "./Certificates";
import Joi from "joi";
import { Buffer } from "buffer";
import type { Buffer } from "node:buffer";
import { Barcode } from "./Barcode";
import { Location } from "./Location";