mirror of
https://github.com/denoland/deno.git
synced 2025-01-21 04:52:26 -05:00
9 lines
133 B
TypeScript
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;
|
|
}
|