@inlang/paraglide-js 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,6 @@ import { Command } from "commander";
2
2
  import { type ProjectSettings } from "@inlang/sdk";
3
3
  import { Logger } from "../../services/logger/index.js";
4
4
  import { type Repository } from "@lix-js/client";
5
- import type { NodeishFilesystem } from "@lix-js/fs";
6
5
  type Context = {
7
6
  logger: Logger;
8
7
  repo: Repository;
@@ -35,5 +34,4 @@ export declare const maybeChangeTsConfigModuleResolution: (ctx: Context) => Prom
35
34
  * Paraligde JS compiles to JS with JSDoc comments. TypeScript doesn't allow JS files by default.
36
35
  */
37
36
  export declare const maybeChangeTsConfigAllowJs: (ctx: Context) => Promise<void>;
38
- export declare function fileExists(filePath: string, nodeishFs: NodeishFilesystem): Promise<boolean>;
39
37
  export {};
@@ -11,4 +11,4 @@ import { ProjectSettings, type Message } from "@inlang/sdk";
11
11
  export declare const compile: (args: {
12
12
  messages: Readonly<Message[]>;
13
13
  settings: ProjectSettings;
14
- }) => Record<string, string>;
14
+ }) => Promise<Record<string, string>>;