forked from FoundKeyGang/FoundKey
client: add return types to functions
This commit is contained in:
parent
db5019d3ec
commit
19f8f095c7
3 changed files with 9 additions and 9 deletions
|
@ -12,7 +12,7 @@ export const instance: Misskey.entities.InstanceMetadata = reactive(instanceData
|
|||
// TODO: set default values
|
||||
});
|
||||
|
||||
export async function fetchInstance() {
|
||||
export async function fetchInstance(): Promise<void> {
|
||||
const meta = await api('meta', {
|
||||
detail: false,
|
||||
});
|
||||
|
|
|
@ -163,7 +163,7 @@ export class Router extends EventEmitter<{
|
|||
return null;
|
||||
}
|
||||
|
||||
private navigate(path: string, key: string | null | undefined, initial = false) {
|
||||
private navigate(path: string, key: string | null | undefined, initial = false): void {
|
||||
const beforePath = this.currentPath;
|
||||
this.currentPath = path;
|
||||
|
||||
|
@ -195,23 +195,23 @@ export class Router extends EventEmitter<{
|
|||
}
|
||||
}
|
||||
|
||||
public getCurrentComponent() {
|
||||
public getCurrentComponent(): Component | null {
|
||||
return this.currentComponent;
|
||||
}
|
||||
|
||||
public getCurrentProps() {
|
||||
public getCurrentProps(): Map<string, string> | null {
|
||||
return this.currentProps;
|
||||
}
|
||||
|
||||
public getCurrentPath() {
|
||||
public getCurrentPath(): string {
|
||||
return this.currentPath;
|
||||
}
|
||||
|
||||
public getCurrentKey() {
|
||||
public getCurrentKey(): string {
|
||||
return this.currentKey;
|
||||
}
|
||||
|
||||
public push(path: string) {
|
||||
public push(path: string): void {
|
||||
const beforePath = this.currentPath;
|
||||
if (path === beforePath) {
|
||||
this.emit('same');
|
||||
|
@ -231,7 +231,7 @@ export class Router extends EventEmitter<{
|
|||
});
|
||||
}
|
||||
|
||||
public change(path: string, key?: string | null) {
|
||||
public change(path: string, key?: string | null): void {
|
||||
this.navigate(path, key);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -130,7 +130,7 @@ export class Storage<T extends StateDef> {
|
|||
this.set(key, [...currentState, value]);
|
||||
}
|
||||
|
||||
public reset(key: keyof T) {
|
||||
public reset(key: keyof T): void {
|
||||
this.set(key, this.def[key].default);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue