mirror of
https://github.com/urbit/shrub.git
synced 2025-01-04 10:32:34 +03:00
term: fix babel & tsc issues
This commit is contained in:
parent
ed264ea251
commit
b9c354b033
@ -11,12 +11,10 @@ import './css/custom.css';
|
|||||||
import Store from './store';
|
import Store from './store';
|
||||||
import Subscription from './subscription';
|
import Subscription from './subscription';
|
||||||
|
|
||||||
class TermApp extends Component {
|
class TermApp extends Component<any, any> {
|
||||||
store: Store;
|
store: Store;
|
||||||
api: any;
|
api: any;
|
||||||
subscription: any;
|
subscription: any;
|
||||||
declare props: any;
|
|
||||||
declare state: any;
|
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
this.store = new Store();
|
this.store = new Store();
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
import { BaseInput, Box, Row } from '@tlon/indigo-react';
|
import { BaseInput, Box, Row } from '@tlon/indigo-react';
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
|
|
||||||
export class Input extends Component {
|
export class Input extends Component<any, {}> {
|
||||||
inputRef: React.RefObject<unknown>;
|
inputRef: React.RefObject<unknown>;
|
||||||
declare props: any;
|
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
this.state = {};
|
this.state = {};
|
||||||
|
Loading…
Reference in New Issue
Block a user