File tree Expand file tree Collapse file tree 5 files changed +4
-6
lines changed Expand file tree Collapse file tree 5 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const initialState: State = {
4
4
isSmall : true ,
5
5
} ;
6
6
7
- export type State = {
7
+ type State = {
8
8
isSmall : boolean ;
9
9
} ;
10
10
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import {
16
16
ProcessAssembly ,
17
17
} from '../types' ;
18
18
19
- export interface State {
19
+ interface State {
20
20
editor : Editor ;
21
21
ace : {
22
22
keybinding : string ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const sliceName = 'crates';
9
9
10
10
const initialState : State = [ ] ;
11
11
12
- export type State = Crate [ ] ;
12
+ type State = Crate [ ] ;
13
13
14
14
const CratesResponse = z . object ( {
15
15
crates : Crate . array ( ) ,
Original file line number Diff line number Diff line change @@ -28,6 +28,4 @@ const output = combineReducers({
28
28
gist,
29
29
} ) ;
30
30
31
- export type State = ReturnType < typeof output > ;
32
-
33
31
export default output ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import z from 'zod';
3
3
4
4
import { createWebsocketResponseSchema , makeWebSocketMeta } from '../websocketActions' ;
5
5
6
- export type State = {
6
+ type State = {
7
7
connected : boolean ;
8
8
error ?: string ;
9
9
} ;
You can’t perform that action at this time.
0 commit comments