1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

chore: type argument missing

This commit is contained in:
Christopher Kolstad 2021-03-26 12:34:37 +01:00
parent 205ad921d4
commit f191d76737

View File

@ -22,7 +22,7 @@ export default class TagService {
return this.tagStore.getAll();
}
async getTagsByType(type): Promise<ITag[]> {
async getTagsByType(type: string): Promise<ITag[]> {
return this.tagStore.getTagsByType(type);
}