0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-07 23:06:50 -05:00
denoland-deno/test_lint_plugins/foo.tsx
2024-12-22 21:35:29 +01:00

9 lines
133 B
TypeScript

const a = <div style={{}} />;
const b = <div style="foo" />;
const c: Foo<number> = {
node: 2,
};
interface Foo<T> {
node: T;
}