diff options
author | HampusM <hampus@hampusmat.com> | 2021-08-02 17:26:29 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-08-02 17:26:29 +0200 |
commit | 904bd1731447796cf1a2bd992c89f889f2a6263a (patch) | |
tree | c746534149722905792e8a1b0059568ed9cc1c7c /packages/api/src/tag.d.ts | |
parent | 8feb65c5467cc3ad48270183113a121c4a9f86ca (diff) |
Renamed the shared types package to api
Diffstat (limited to 'packages/api/src/tag.d.ts')
-rw-r--r-- | packages/api/src/tag.d.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/api/src/tag.d.ts b/packages/api/src/tag.d.ts new file mode 100644 index 0000000..7c418da --- /dev/null +++ b/packages/api/src/tag.d.ts @@ -0,0 +1,7 @@ +import { Author } from "./misc"; + +export type Tag = { + name: string, + author: Author, + date: number +}
\ No newline at end of file |