Add some member access qualifiers
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
parent
05b83d1fae
commit
14f547f0eb
|
@ -35,9 +35,9 @@ import { abbreviateUrl } from "./utils/UrlUtils";
|
||||||
export class AbortedIdentityActionError extends Error {}
|
export class AbortedIdentityActionError extends Error {}
|
||||||
|
|
||||||
export default class IdentityAuthClient {
|
export default class IdentityAuthClient {
|
||||||
accessToken: string;
|
private accessToken: string;
|
||||||
tempClient: MatrixClient;
|
private tempClient: MatrixClient;
|
||||||
authEnabled = true;
|
private authEnabled = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new identity auth client
|
* Creates a new identity auth client
|
||||||
|
|
|
@ -27,7 +27,7 @@ interface IProps {
|
||||||
export default class NodeAnimator extends React.Component<IProps> {
|
export default class NodeAnimator extends React.Component<IProps> {
|
||||||
private nodes = {};
|
private nodes = {};
|
||||||
private children: { [key: string]: React.DetailedReactHTMLElement<any, HTMLElement> };
|
private children: { [key: string]: React.DetailedReactHTMLElement<any, HTMLElement> };
|
||||||
static defaultProps: Partial<IProps> = {
|
public static defaultProps: Partial<IProps> = {
|
||||||
startStyles: [],
|
startStyles: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue