made tiny updates

This commit is contained in:
SinachPat
2026-05-03 20:34:18 +01:00
parent 4dca0f1bac
commit 3f029e15c2
30 changed files with 3463 additions and 357 deletions
+29
View File
@@ -0,0 +1,29 @@
// Ambient declaration for tinyglobby (0.2.16 ships its types as
// `./dist/index.d.cts` per package.json but that file isn't actually in the
// tarball). Cover only the surface we use; widen if more API surface lands.
declare module 'tinyglobby' {
export interface GlobOptions {
cwd?: string;
ignore?: string | string[];
onlyFiles?: boolean;
onlyDirectories?: boolean;
absolute?: boolean;
dot?: boolean;
expandDirectories?: boolean;
followSymbolicLinks?: boolean;
caseSensitiveMatch?: boolean;
deep?: number;
patterns?: string | string[];
}
export function glob(
patterns: string | string[],
options?: GlobOptions,
): Promise<string[]>;
export function globSync(
patterns: string | string[],
options?: GlobOptions,
): string[];
}