remove lcloc

This commit is contained in:
tdurieux
2021-08-12 16:03:00 +02:00
parent 2bb05ff664
commit 97ee72eb7a
3 changed files with 0 additions and 14 deletions

View File

@@ -18,7 +18,6 @@ const UserSchema = new Schema({
image: Boolean,
pdf: Boolean,
notebook: Boolean,
loc: Boolean,
link: Boolean,
page: { type: String },
},

View File

@@ -16,7 +16,6 @@ export interface IUser {
image: boolean;
pdf: boolean;
notebook: boolean;
loc: boolean;
link: boolean;
page: string | null;
};

View File

@@ -85,15 +85,3 @@ export interface TreeFile {
sha: string;
size: number;
}
export interface Loc {
info: { total: number; code: number; commit: number };
languages: {
[key: string]: {
total: number;
code: number;
commit: number;
sum: number;
};
};
}