Skip to content

Commit 8579632

Browse files
committed
Replaced type Row for interface Row
1 parent 5d16d90 commit 8579632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frameworks/keyed/michijs/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const adjectivesLength = adjectives.length;
6767
const coloursLength = colours.length;
6868
const nounsLength = nouns.length;
6969

70-
type Row = { label: string; id: number; selected: string | undefined };
70+
interface Row { label: string; id: number; selected: string | undefined };
7171
let nextId = 1;
7272
let selectedItem: ObservableType<Row> | null = null;
7373
function buildData(count = 1000) {

0 commit comments

Comments
 (0)