You've already forked obsidian-visualiser
New Canvas zoom with dbl click and starting to work on tag API
This commit is contained in:
11
types/api.d.ts
vendored
11
types/api.d.ts
vendored
@@ -52,6 +52,13 @@ export interface User {
|
||||
id: number;
|
||||
username: string;
|
||||
}
|
||||
export interface Tag {
|
||||
tag: string;
|
||||
project: number;
|
||||
description: string;
|
||||
}
|
||||
|
||||
|
||||
export type ProjectSearch = Project &
|
||||
{
|
||||
pages: number;
|
||||
@@ -69,6 +76,10 @@ export type CommentSearch = Comment &
|
||||
export type UserSearch = User &
|
||||
{
|
||||
}
|
||||
export type CommentedFile = File &
|
||||
{
|
||||
comments: CommentSearch[];
|
||||
}
|
||||
export interface Search {
|
||||
projects: ProjectSearch[];
|
||||
files: FileSearch[];
|
||||
|
||||
Reference in New Issue
Block a user