yavascript 0.0.4 → 0.0.5

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.
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yavascript",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "main": "lib/index.js",
5
5
  "bin": "lib/cli.js",
6
6
  "types": "yavascript.d.ts",
package/yavascript.d.ts CHANGED
@@ -378,7 +378,7 @@ declare function ensureDir(path: string): string;
378
378
  /**
379
379
  * Options for {@link copy}.
380
380
  */
381
- export type CopyOptions = {
381
+ declare type CopyOptions = {
382
382
  /**
383
383
  * What to do when attempting to copy something into a location where
384
384
  * something else already exists.
@@ -406,7 +406,7 @@ export type CopyOptions = {
406
406
  *
407
407
  * Provides the same functionality as the command `cp -R`.
408
408
  */
409
- export function copy(from: string, to: string, options?: CopyOptions): void;
409
+ declare function copy(from: string, to: string, options?: CopyOptions): void;
410
410
 
411
411
  // ------------
412
412
  // --- glob ---
@@ -415,7 +415,7 @@ export function copy(from: string, to: string, options?: CopyOptions): void;
415
415
  /**
416
416
  * Options for {@link glob}.
417
417
  */
418
- export type GlobOptions = {
418
+ declare type GlobOptions = {
419
419
  /**
420
420
  * Whether to treat symlinks to directories as if they themselves were
421
421
  * directories, traversing into them.