Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,7 @@ export const make: unknown = makeTypeChecked as React.ComponentType<{
const JSXV4BS = require('./JSXV4.bs');

// tslint:disable-next-line:interface-over-type-literal
export type CompV4_props<x,y> = {
readonly key?: string;
readonly x: x;
readonly y: y
};
export type CompV4_props<x,y> = { readonly x: x; readonly y: y };

// tslint:disable-next-line:interface-over-type-literal
export type person = { readonly name: string; readonly age: number };
Expand All @@ -40,7 +36,6 @@ export type renderMe<a> = React.ComponentType<{ readonly randomString: string; r

// tslint:disable-next-line:interface-over-type-literal
export type props<actions,person,children,renderMe> = {
readonly key?: string;
readonly actions?: actions;
readonly person: person;
readonly children: children;
Expand Down