12 lines
195 B
TypeScript
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
|
|
>
|
|
}
|