Skip to content

Commit

Permalink
Fix Typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
Corey Robertson committed Aug 18, 2020
1 parent b3b2131 commit 973d1ce
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,18 @@ storiesOf('renderers/table', module).add('default', () => {
datatable: {
type: 'datatable' as 'datatable',
columns: [
{ name: 'Foo', type: 'string' as 'string' },
{ name: 'Bar', type: 'number' as 'number' },
{
name: 'Foo',
type: 'string' as 'string',
id: 'id-foo',
meta: { type: 'string' as 'string' },
},
{
name: 'Bar',
type: 'number' as 'number',
id: 'id-bar',
meta: { type: 'string' as 'string' },
},
],
rows: [
{ Foo: 'a', Bar: 700 },
Expand Down

0 comments on commit 973d1ce

Please sign in to comment.