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; -};