aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/fs.ts
blob: 0bd6a2c74873d5b8dff9395dd576db7fa4030e81 (plain) (blame)
1
2
3
4
5
6
import { EffectAtom } from './io'

export interface WriteFile<_Path extends string, _Content extends string> extends EffectAtom { }

export interface ReadFile<_Path extends string> extends EffectAtom<string> { }