mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 02:14:44 +00:00
8 lines
136 B
TypeScript
8 lines
136 B
TypeScript
import { join } from 'pathe'
|
|
import fse from 'fs-extra'
|
|
|
|
export const wpfs = {
|
|
...fse,
|
|
join
|
|
} as typeof fse & { join: typeof join }
|