@yamlresume/core 0.10.1 → 0.10.2
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.
- package/dist/index.d.ts +6 -0
- package/dist/index.js +7 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1647,6 +1647,12 @@ declare const ErrorType: {
|
|
|
1647
1647
|
readonly message: "LaTeX compilation failed: {error}";
|
|
1648
1648
|
readonly error: "";
|
|
1649
1649
|
};
|
|
1650
|
+
readonly LATEX_COMPILE_TIMEOUT: {
|
|
1651
|
+
readonly code: "LATEX_COMPILE_TIMEOUT";
|
|
1652
|
+
readonly errno: number;
|
|
1653
|
+
readonly message: string;
|
|
1654
|
+
readonly timeout: "";
|
|
1655
|
+
};
|
|
1650
1656
|
};
|
|
1651
1657
|
/**
|
|
1652
1658
|
* Type for the error code.
|