From c5a61b08010c7c687e7f63f9b309fe765988e47b Mon Sep 17 00:00:00 2001 From: Joshua Chen Date: Thu, 9 Jun 2022 18:54:10 +0800 Subject: [PATCH] fix: always use fully specified paths in type declaration --- lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.js b/lib/index.js index e24c9f89..6792951b 100644 --- a/lib/index.js +++ b/lib/index.js @@ -4,8 +4,8 @@ * @typedef {import('unist').Point} Point * @typedef {Record & {type: string, position?: Position|undefined}} NodeLike * @typedef {import('./minurl.shared.js').URL} URL - * @typedef {import('..').VFileData} VFileData - * @typedef {import('..').VFileValue} VFileValue + * @typedef {import('../index.js').VFileData} VFileData + * @typedef {import('../index.js').VFileValue} VFileValue * * @typedef {'ascii'|'utf8'|'utf-8'|'utf16le'|'ucs2'|'ucs-2'|'base64'|'base64url'|'latin1'|'binary'|'hex'} BufferEncoding * Encodings supported by the buffer class.