mirror of https://github.com/vector-im/riot-web
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 default class IdentityAuthClient {
|
||||
accessToken: string;
|
||||
tempClient: MatrixClient;
|
||||
authEnabled = true;
|
||||
private accessToken: string;
|
||||
private tempClient: MatrixClient;
|
||||
private authEnabled = true;
|
||||
|
||||
/**
|
||||
* Creates a new identity auth client
|
||||
|
|
|
@ -27,7 +27,7 @@ interface IProps {
|
|||
export default class NodeAnimator extends React.Component<IProps> {
|
||||
private nodes = {};
|
||||
private children: { [key: string]: React.DetailedReactHTMLElement<any, HTMLElement> };
|
||||
static defaultProps: Partial<IProps> = {
|
||||
public static defaultProps: Partial<IProps> = {
|
||||
startStyles: [],
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue