From e5de9df037cd08a234474bd249ade4d9ff707575 Mon Sep 17 00:00:00 2001 From: Jason Date: Wed, 13 Dec 2023 20:00:41 +0800 Subject: [PATCH] typo --- src/_node/file/types.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/_node/file/types.ts b/src/_node/file/types.ts index f91c815d..0b09e071 100644 --- a/src/_node/file/types.ts +++ b/src/_node/file/types.ts @@ -83,13 +83,13 @@ export type TFileApiPayload = TFileApiPayloadBase & | { action: Exclude; uids?: never } ); +export type TZipFileInfo = { + path: string; + zip: JSZip | null | undefined; +}; + // -------------------- export type TFile = { uid: TNodeUid; content: string; }; - -export type TZipFileInfo = { - path: string; - zip: JSZip | null | undefined; -};