generated from acdh-oeaw/template-app-nuxt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use new SketchEngine. Still errors (due to slightly different results)
actual login request lint fixes,
- Loading branch information
Showing
8 changed files
with
109 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* eslint-disable @typescript-eslint/no-explicit-any */ | ||
interface CorporaInfo { | ||
data: Array<Corpus>; | ||
api_version: string; | ||
manatee_version: string; | ||
request: any; | ||
} | ||
|
||
interface Corpus { | ||
id?: any; | ||
owner_id?: any; | ||
owner_name?: any; | ||
tagset_id?: any; | ||
sketch_grammar_id?: any; | ||
term_grammar_id?: any; | ||
_is_sgdev: boolean; | ||
is_featured: boolean; | ||
access_on_demand: boolean; | ||
terms_of_use?: any; | ||
sort_to_end?: any; | ||
tags: Array<any>; | ||
created?: any; | ||
needs_recompiling: boolean; | ||
user_can_read: boolean; | ||
user_can_upload: boolean; | ||
user_can_manage: boolean; | ||
is_shared: boolean; | ||
is_error_corpus: boolean; | ||
corpname: string; | ||
language_id: string; | ||
language_name: string; | ||
sizes: Sizes; | ||
compilation_status: string; | ||
new_version: string; | ||
name: string; | ||
info: string; | ||
wsdef: string; | ||
termdef: string; | ||
diachronic: boolean; | ||
aligned: Array<any>; | ||
docstructure: string; | ||
} | ||
|
||
interface Sizes { | ||
tokencount: string; | ||
wordcount: string; | ||
doccount: string; | ||
parcount: string; | ||
sentcount: string; | ||
normsum?: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters