forked from FoundKeyGang/FoundKey
refactor: fix types
This commit is contained in:
parent
67e2768c3e
commit
a75f3fb87c
1 changed files with 3 additions and 3 deletions
|
@ -7,9 +7,9 @@ export class Autocomplete {
|
||||||
private suggestion: {
|
private suggestion: {
|
||||||
x: Ref<number>;
|
x: Ref<number>;
|
||||||
y: Ref<number>;
|
y: Ref<number>;
|
||||||
q: Ref<string>;
|
q: Ref<string | null>;
|
||||||
close: Function;
|
close: Function;
|
||||||
};
|
} | null;
|
||||||
private textarea: any;
|
private textarea: any;
|
||||||
private vm: any;
|
private vm: any;
|
||||||
private currentType: string;
|
private currentType: string;
|
||||||
|
@ -122,7 +122,7 @@ export class Autocomplete {
|
||||||
/**
|
/**
|
||||||
* サジェストを提示します。
|
* サジェストを提示します。
|
||||||
*/
|
*/
|
||||||
private async open(type: string, q: string) {
|
private async open(type: string, q: string | null) {
|
||||||
if (type != this.currentType) {
|
if (type != this.currentType) {
|
||||||
this.close();
|
this.close();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue