Add some member access qualifiers

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-09-28 07:48:56 +02:00
parent 05b83d1fae
commit 14f547f0eb
No known key found for this signature in database
GPG Key ID: 55C211A1226CB17D
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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: [],
};