mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
21 lines
437 B
Zig
21 lines
437 B
Zig
const bun = @import("bun");
|
|
const string = bun.string;
|
|
const Output = bun.Output;
|
|
const Global = bun.Global;
|
|
const Environment = bun.Environment;
|
|
const strings = bun.strings;
|
|
const MutableString = bun.MutableString;
|
|
const stringZ = bun.stringZ;
|
|
const default_allocator = bun.default_allocator;
|
|
|
|
const std = @import("std");
|
|
|
|
pub const NPMClient = struct {
|
|
bin: string,
|
|
tag: Tag,
|
|
|
|
pub const Tag = enum {
|
|
bun,
|
|
};
|
|
};
|