diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-14 14:46:37 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-14 14:46:37 -0800 |
| commit | afa87af01c79a9baa539f2992d32154d2a4739bd (patch) | |
| tree | 92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/pathe/dist/index.d.ts | |
| parent | 3b927e84d200402281f68181cd4253bc77e5528d (diff) | |
| download | neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2 neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip | |
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'vanilla/node_modules/pathe/dist/index.d.ts')
| -rw-r--r-- | vanilla/node_modules/pathe/dist/index.d.ts | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/vanilla/node_modules/pathe/dist/index.d.ts b/vanilla/node_modules/pathe/dist/index.d.ts deleted file mode 100644 index 61046da..0000000 --- a/vanilla/node_modules/pathe/dist/index.d.ts +++ /dev/null @@ -1,47 +0,0 @@ -import * as path from 'node:path'; -import path__default from 'node:path'; - -/** - * Constant for path separator. - * - * Always equals to `"/"`. - */ -declare const sep = "/"; -declare const normalize: typeof path__default.normalize; -declare const join: typeof path__default.join; -declare const resolve: typeof path__default.resolve; -/** - * Resolves a string path, resolving '.' and '.' segments and allowing paths above the root. - * - * @param path - The path to normalise. - * @param allowAboveRoot - Whether to allow the resulting path to be above the root directory. - * @returns the normalised path string. - */ -declare function normalizeString(path: string, allowAboveRoot: boolean): string; -declare const isAbsolute: typeof path__default.isAbsolute; -declare const toNamespacedPath: typeof path__default.toNamespacedPath; -declare const extname: typeof path__default.extname; -declare const relative: typeof path__default.relative; -declare const dirname: typeof path__default.dirname; -declare const format: typeof path__default.format; -declare const basename: typeof path__default.basename; -declare const parse: typeof path__default.parse; -/** - * The `path.matchesGlob()` method determines if `path` matches the `pattern`. - * @param path The path to glob-match against. - * @param pattern The glob to check the path against. - */ -declare const matchesGlob: (path: string, pattern: string | string[]) => boolean; - -type NodePath = typeof path; -/** - * The platform-specific file delimiter. - * - * Equals to `";"` in windows and `":"` in all other platforms. - */ -declare const delimiter: ";" | ":"; -declare const posix: NodePath["posix"]; -declare const win32: NodePath["win32"]; -declare const _default: NodePath; - -export { basename, _default as default, delimiter, dirname, extname, format, isAbsolute, join, matchesGlob, normalize, normalizeString, parse, posix, relative, resolve, sep, toNamespacedPath, win32 }; |
