Skip to content

Commit 95479ca

Browse files
committed
fix types
Signed-off-by: Joshua Li <[email protected]>
1 parent f32b3e5 commit 95479ca

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
{
2020
files: ['**/*.{js,ts,tsx}'],
2121
rules: {
22+
'@typescript-eslint/no-explicit-any': 'error',
2223
'no-console': 0,
2324
'@osd/eslint/require-license-header': [
2425
'error',

public/components/llm_chat/hooks/fetch_reducer.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ interface State<T> {
1414
type Action<T> =
1515
| { type: 'request' }
1616
| { type: 'success'; payload: State<T>['data'] }
17-
| { type: 'failure'; error: Required<State<T>['error']> };
17+
| { type: 'failure'; error: NonNullable<State<T>['error']> };
1818

1919
// TODO use instantiation expressions when typescript is upgraded to >= 4.7
20+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2021
export type GenericReducer<T = any> = Reducer<State<T>, Action<T>>;
2122
export const genericReducer: GenericReducer = (state, action) => {
2223
switch (action.type) {

0 commit comments

Comments
 (0)