bun-types 1.1.25-canary.20240819T140620 → 1.1.25
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/bun.d.ts +7 -0
- package/package.json +1 -1
package/bun.d.ts
CHANGED
|
@@ -2975,6 +2975,13 @@ declare module "bun" {
|
|
|
2975
2975
|
// tslint:disable-next-line:unified-signatures
|
|
2976
2976
|
function file(path: string | URL, options?: BlobPropertyBag): BunFile;
|
|
2977
2977
|
|
|
2978
|
+
/**
|
|
2979
|
+
* A list of files embedded into the standalone executable. Lexigraphically sorted by name.
|
|
2980
|
+
*
|
|
2981
|
+
* If the process is not a standalone executable, this returns an empty array.
|
|
2982
|
+
*/
|
|
2983
|
+
const embeddedFiles: ReadonlyArray<Blob>;
|
|
2984
|
+
|
|
2978
2985
|
/**
|
|
2979
2986
|
* `Blob` that leverages the fastest system calls available to operate on files.
|
|
2980
2987
|
*
|
package/package.json
CHANGED