mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
remove dead code
This commit is contained in:
parent
8600cd0abd
commit
3b5df5b376
|
@ -1,54 +1,3 @@
|
||||||
export interface Showcase {
|
|
||||||
id: string;
|
|
||||||
title: string;
|
|
||||||
summary: string;
|
|
||||||
body: string;
|
|
||||||
createdAt: Date;
|
|
||||||
updatedAt: Date;
|
|
||||||
|
|
||||||
tags: ShowcaseTag[];
|
|
||||||
nodes?: Node[];
|
|
||||||
materials?: Material[];
|
|
||||||
author?: Author;
|
|
||||||
authorId?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ShowcaseTag {
|
|
||||||
id: string;
|
|
||||||
label: string;
|
|
||||||
description: string;
|
|
||||||
color: string;
|
|
||||||
|
|
||||||
showcases?: Showcase[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface Node {
|
|
||||||
id: string;
|
|
||||||
latitude: string;
|
|
||||||
longitude: string;
|
|
||||||
|
|
||||||
showcase?: Showcase;
|
|
||||||
showcaseId?: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface Material {
|
|
||||||
id: string;
|
|
||||||
name: string;
|
|
||||||
details: string;
|
|
||||||
image: string;
|
|
||||||
url: string;
|
|
||||||
|
|
||||||
showcases?: Showcase[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface Author {
|
|
||||||
id: string;
|
|
||||||
githubUsername: string;
|
|
||||||
bio: string;
|
|
||||||
|
|
||||||
showcase?: Showcase[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface DeviceFirmwareResource {
|
export interface DeviceFirmwareResource {
|
||||||
id: string;
|
id: string;
|
||||||
title: string;
|
title: string;
|
||||||
|
|
Loading…
Reference in a new issue