Skip to content

Commit

Permalink
fix(@h6s/table): trigger release
Browse files Browse the repository at this point in the history
  • Loading branch information
SoYoung210 committed Dec 13, 2022
1 parent a393faf commit 93d6b04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16.14.2
node-version: 16.15.0
- name: Install dependencies
run: yarn install --immutable
- name: Build Package
Expand Down
6 changes: 3 additions & 3 deletions packages/table/src/core/TableCore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ import { buildHeadMeta } from './thead/buildHeadMeta'
import { buildTHeadGroups } from './thead/buildTHeadGroups'
import { buildTHeads } from './thead/buildTHeads'

interface Options<Row, CellRenderer> {
source?: Row[];
interface Options<Row2, CellRenderer> {
source?: Row2[];
cellRenderer?: CellRenderer;
defaultHeadIds?: Array<HeadId<Row>>;
defaultHeadIds?: Array<HeadId<Row2>>;
}

export class TableCore<Row, CellRenderer> {
Expand Down

0 comments on commit 93d6b04

Please sign in to comment.