Skip to content

Commit

Permalink
Update sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Dec 1, 2023
1 parent 05d33f2 commit 38fac35
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,17 @@ Sponsorship at any level is appreciated and encouraged. For individual developer
<br />
<p width="200px">How developers support their users.</p>
</td>
<td align="center">
<a href="https://inngest.com/">
<img src="https://avatars.githubusercontent.com/u/78935958?s=200&v=4" width="200px;" alt="Inngest logo" />
</a>
<br />
<b>Inngest</b>
<br />
<a href="https://inngest.com/">inngest.com</a>
<br />
<p width="200px">Effortless serverless queues, background jobs, and workflows</p>
</td>
</tr>
</table>

Expand Down
11 changes: 11 additions & 0 deletions deno/lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,17 @@ Sponsorship at any level is appreciated and encouraged. For individual developer
<br />
<p width="200px">How developers support their users.</p>
</td>
<td align="center">
<a href="https://inngest.com/">
<img src="https://avatars.githubusercontent.com/u/78935958?s=200&v=4" width="200px;" alt="Inngest logo" />
</a>
<br />
<b>Inngest</b>
<br />
<a href="https://inngest.com/">inngest.com</a>
<br />
<p width="200px">Effortless serverless queues, background jobs, and workflows</p>
</td>
</tr>
</table>

Expand Down
31 changes: 30 additions & 1 deletion playground.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
import { z } from "./src";

import * as mod from "node:module";
z;

// @ts-ignore
// const arg = await import("./index");
// arg;
// require.resolve(arg);

load: {
}
interface A<T> {
name: T;
children: any;
render(): ReadableStream | string;
}
function Hyper<T>(arg: T) {
return function () {} as any as {
prototype: A<T>;
new (): A<T>;
};
}

export default class extends Hyper({ name: 1234 }) {
render() {
// this.name.name;
return `asdf ${this.children} asdf`;
}
}

const a = new Arg();
a.name;

0 comments on commit 38fac35

Please sign in to comment.