File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,10 +16,7 @@ export function proxifyTable<
1616> (
1717 tableSignal : Signal < Table < TFeatures , TData > > ,
1818) : Table < TFeatures , TData > & Signal < Table < TFeatures , TData > > {
19- const internalState = tableSignal as TableSignal <
20- TFeatures ,
21- TData
22- >
19+ const internalState = tableSignal as TableSignal < TFeatures , TData >
2320
2421 return new Proxy ( internalState , {
2522 apply ( ) {
Original file line number Diff line number Diff line change 1414
1515 type Props = {
1616 /** The cell or header field of the current cell's column definition. */
17- content?: TContext extends HeaderContext<
18- TFeatures,
19- TData,
20- TValue
21- >
17+ content?: TContext extends HeaderContext< TFeatures, TData, TValue>
2218 ? ColumnDefTemplate< HeaderContext< TFeatures, TData, TValue>>
2319 : TContext extends CellContext< TFeatures, TData, TValue>
2420 ? ColumnDefTemplate< CellContext< TFeatures, TData, TValue>>
Original file line number Diff line number Diff line change @@ -10,10 +10,7 @@ interface Person {
1010
1111describe ( 'constructRow' , ( ) => {
1212 it ( 'should create a row with all core row APIs and properties' , ( ) => {
13- const table = { _features : { Rows } , options : { } } as Table <
14- any ,
15- Person
16- >
13+ const table = { _features : { Rows } , options : { } } as Table < any , Person >
1714 const id = 'test-row'
1815 const original = { firstName : 'Tanner' } as Person
1916 const rowIndex = 0
You can’t perform that action at this time.
0 commit comments