run npm install to generate a package lock

This commit is contained in:
sashinexists
2024-12-07 13:18:31 +11:00
parent e7d08a91b5
commit 23437d228e
2501 changed files with 290663 additions and 0 deletions

13
node_modules/watcher/dist/constants.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
/// <reference types="node" />
declare const DEBOUNCE = 300;
declare const DEPTH = 20;
declare const LIMIT = 10000000;
declare const PLATFORM: NodeJS.Platform;
declare const IS_LINUX: boolean;
declare const IS_MAC: boolean;
declare const IS_WINDOWS: boolean;
declare const HAS_NATIVE_RECURSION: boolean;
declare const POLLING_INTERVAL = 3000;
declare const POLLING_TIMEOUT = 20000;
declare const RENAME_TIMEOUT = 1250;
export { DEBOUNCE, DEPTH, LIMIT, HAS_NATIVE_RECURSION, IS_LINUX, IS_MAC, IS_WINDOWS, PLATFORM, POLLING_INTERVAL, POLLING_TIMEOUT, RENAME_TIMEOUT };