mtcute/packages/bun/src/platform.ts

9 lines
277 B
TypeScript
Raw Normal View History

2024-04-24 13:22:16 +03:00
import { NodePlatform } from './common-internals-node/platform.js'
import { normalizeFile } from './utils/normalize-file.js'
export class BunPlatform extends NodePlatform {
declare normalizeFile: typeof normalizeFile
}
BunPlatform.prototype.normalizeFile = normalizeFile