@particle-academy/dark-slide 0.7.0 → 0.7.1
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -138,8 +138,8 @@ interface WriteOptions {
|
|
|
138
138
|
* and Node-only (browsers have no sync FS).
|
|
139
139
|
*/
|
|
140
140
|
|
|
141
|
-
/**
|
|
142
|
-
declare const VERSION = "0.
|
|
141
|
+
/** This package's own version, pinned to package.json by `version.test.ts`. */
|
|
142
|
+
declare const VERSION = "0.7.1";
|
|
143
143
|
type Any$4 = any;
|
|
144
144
|
declare const Agent: {
|
|
145
145
|
/** Validate a deck without writing. Empty array = valid. */
|
|
@@ -174,7 +174,7 @@ type Any$3 = any;
|
|
|
174
174
|
declare class DarkSlide {
|
|
175
175
|
private tempDir;
|
|
176
176
|
private allowHttpImages;
|
|
177
|
-
static readonly VERSION = "0.
|
|
177
|
+
static readonly VERSION = "0.7.1";
|
|
178
178
|
constructor(tempDir?: string | null, allowHttpImages?: boolean);
|
|
179
179
|
validate(deck: Any$3): ValidationError[];
|
|
180
180
|
validateAndRepair(deck: Any$3): RepairResult;
|
package/dist/index.d.ts
CHANGED
|
@@ -138,8 +138,8 @@ interface WriteOptions {
|
|
|
138
138
|
* and Node-only (browsers have no sync FS).
|
|
139
139
|
*/
|
|
140
140
|
|
|
141
|
-
/**
|
|
142
|
-
declare const VERSION = "0.
|
|
141
|
+
/** This package's own version, pinned to package.json by `version.test.ts`. */
|
|
142
|
+
declare const VERSION = "0.7.1";
|
|
143
143
|
type Any$4 = any;
|
|
144
144
|
declare const Agent: {
|
|
145
145
|
/** Validate a deck without writing. Empty array = valid. */
|
|
@@ -174,7 +174,7 @@ type Any$3 = any;
|
|
|
174
174
|
declare class DarkSlide {
|
|
175
175
|
private tempDir;
|
|
176
176
|
private allowHttpImages;
|
|
177
|
-
static readonly VERSION = "0.
|
|
177
|
+
static readonly VERSION = "0.7.1";
|
|
178
178
|
constructor(tempDir?: string | null, allowHttpImages?: boolean);
|
|
179
179
|
validate(deck: Any$3): ValidationError[];
|
|
180
180
|
validateAndRepair(deck: Any$3): RepairResult;
|
package/dist/index.js
CHANGED