Files
ClosedCode/packages/plugin/src/v2/effect/npm.ts
T

12 lines
195 B
TypeScript

import type { Effect } from "effect"
export interface Npm {
add(pkg: string): Effect.Effect<
{
readonly directory: string
readonly entrypoint?: string
},
unknown
>
}