1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/interfaces/tags.ts
Fredrik Strand Oseberg 47579e2616 Feat/toggle view (#389)
* feat: toggle view

* fix: navigation

* eat: toggle view

* fix: resolve lint

* fix: remove console logs

* fix: reimplement feature validation
2021-10-01 13:49:18 +02:00

11 lines
155 B
TypeScript

export interface ITag {
value: string;
type: string;
}
export interface ITagType {
name: string;
description: string;
icon: string;
}