diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-01-06 20:40:29 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-01-06 20:43:49 +0530 |
| commit | cda0419722b022ed0a8f3c4fd3122230b19a0c64 (patch) | |
| tree | 6d63849e950cc4c0257a2368560eb1bafefbd9d4 /src/stdlib | |
| parent | a56f093bf08780ab7ed7ef196f031c193a522922 (diff) | |
| download | ts-types-lang-cda0419722b022ed0a8f3c4fd3122230b19a0c64.tar.gz ts-types-lang-cda0419722b022ed0a8f3c4fd3122230b19a0c64.zip | |
feat: adds examples for everything
Diffstat (limited to '')
| -rw-r--r-- | src/stdlib/stdio.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdlib/stdio.ts b/src/stdlib/stdio.ts index b20d2da..365aead 100644 --- a/src/stdlib/stdio.ts +++ b/src/stdlib/stdio.ts @@ -8,3 +8,5 @@ export interface Debug<_ extends string, T> extends Effect<T> { } export interface ReadLine extends Effect<string> { } +export type PutStringLn<S extends string> = PutString<`${S}\n`> + |
