diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-01-08 23:07:41 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-01-08 23:07:41 +0530 |
| commit | 580ef150778326262d04018460f672bda53d5696 (patch) | |
| tree | 53b93a2e381e6c15ed4e959f766fc88afc234a0f /examples/file.ts | |
| parent | a41d70afe7692e4ef344bc3c599115009f2dad15 (diff) | |
| download | ts-types-lang-580ef150778326262d04018460f672bda53d5696.tar.gz ts-types-lang-580ef150778326262d04018460f672bda53d5696.zip | |
chore: adds prettier
Diffstat (limited to '')
| -rw-r--r-- | examples/file.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/file.ts b/examples/file.ts index 279a51b..287f108 100644 --- a/examples/file.ts +++ b/examples/file.ts @@ -1,9 +1,7 @@ -import { Bind, Kind1, ReadFile, WriteFile, PutStringLn } from '../stdlib' +import { Bind, Kind1, ReadFile, PutStringLn } from '../stdlib' interface PrintK extends Kind1<string> { return: PutStringLn<this['input']> } -export type main = [ - Bind<ReadFile<"./default.nix">, PrintK>, -] +export type main = Bind<ReadFile<'./default.nix'>, PrintK> |
