descargar pdf y fotos

This commit is contained in:
2026-06-09 08:25:57 -05:00
parent 0a9c672c75
commit b19deda02c
4404 changed files with 664668 additions and 84 deletions
+27
View File
@@ -0,0 +1,27 @@
declare namespace path {
export const sep: '/' | '\\'
export const delimiter: ':' | ';'
export function basename(path: string, suffix?: string): string
export function dirname(path: string): string
export function extname(path: string): string
export function isAbsolute(path: string): boolean
export function join(...paths: string[]): string
export function normalize(path: string): string
export function relative(from: string, to: string): string
export function resolve(...args: string[]): string
export function toNamespacedPath(path: string): string
export const posix = path
export const win32 = path
}
export = path