mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-05 05:19:42 +00:00
9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
declare module 'path' {
|
|
export function resolve(...paths: string[]): string
|
|
}
|
|
|
|
declare module 'node:path' {
|
|
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
import path = require('path')
|
|
export = path
|
|
}
|