Skip to content

Commit

Permalink
Add transloadit
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Mar 10, 2023
1 parent 3809d54 commit d1ad522
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 12 deletions.
16 changes: 10 additions & 6 deletions README.md
Expand Up @@ -215,16 +215,20 @@ Sponsorship at any level is appreciated and encouraged. For individual developer
<b>Trigger.dev</b>
<br />
<a href="https://trigger.dev">trigger.dev</a>
<br/>
<p>Effortless automation for developers.</p>
</td>
<!-- <td align="center">
<a href="https://proxy.com/">
<img src="https://avatars.githubusercontent.com/u/14321439?s=200&v=4" width="200px;" alt="Proxy logo" />
<td align="center">
<a href="https://transloadit.com/">
<img src="https://avatars.githubusercontent.com/u/125754?s=200&v=4" width="200px;" alt="Transloadit logo" />
</a>
<br />
<b>Proxy</b>
<b>Transloadit</b>
<br />
<a href="https://proxy.com">proxy.com</a>
</td> -->
<a href="https://transloadit.com">transloadit.com</a>
<br/>
<p>Simple file processing for developers.</p>
</td>
</tr>
</table>

Expand Down
16 changes: 10 additions & 6 deletions deno/lib/README.md
Expand Up @@ -215,16 +215,20 @@ Sponsorship at any level is appreciated and encouraged. For individual developer
<b>Trigger.dev</b>
<br />
<a href="https://trigger.dev">trigger.dev</a>
<br/>
<p>Effortless automation for developers.</p>
</td>
<!-- <td align="center">
<a href="https://proxy.com/">
<img src="https://avatars.githubusercontent.com/u/14321439?s=200&v=4" width="200px;" alt="Proxy logo" />
<td align="center">
<a href="https://transloadit.com/">
<img src="https://avatars.githubusercontent.com/u/125754?s=200&v=4" width="200px;" alt="Transloadit logo" />
</a>
<br />
<b>Proxy</b>
<b>Transloadit</b>
<br />
<a href="https://proxy.com">proxy.com</a>
</td> -->
<a href="https://transloadit.com">transloadit.com</a>
<br/>
<p>Simple file processing for developers.</p>
</td>
</tr>
</table>

Expand Down
20 changes: 20 additions & 0 deletions playground.ts
Expand Up @@ -17,3 +17,23 @@ type cat = z.infer<typeof cat>; //["subcategories"];
declare let fido: cat;
fido;
fido.subcategories![0];

declare const __nominal__type: unique symbol;
declare const __nominal__type2: unique symbol;

const arg = {
a: "asdf",
b: "asdf",
c: "asdf",
["$type"]: () => {},
["@@type"]: () => {},
["{type}"]: 1324,
};

arg;

const kwarg = {
[__nominal__type2]: "asdf",
};

type aklmdf = typeof arg extends typeof kwarg ? true : false;

0 comments on commit d1ad522

Please sign in to comment.