Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sfcode
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ayush
sfcode
Commits
98d17d44
Commit
98d17d44
authored
Dec 13, 2020
by
Adarsh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commenst add
parent
a55f3c78
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
14 deletions
+14
-14
src/app/directory.ts
src/app/directory.ts
+3
-3
src/app/file.ts
src/app/file.ts
+4
-4
src/app/problem.ts
src/app/problem.ts
+2
-2
src/app/question.ts
src/app/question.ts
+2
-2
src/app/user.ts
src/app/user.ts
+3
-3
No files found.
src/app/directory.ts
View file @
98d17d44
/*
*
\file
*
Interface for Directory having attributes for storing it's child directories, files and the path where it is tored in the server.
*
Used in File management for providing User a workspace.
/*
!
\file
Interface for Directory having attributes for storing it's child directories, files and the path where it is tored in the server.
Used in File management for providing User a workspace.
*/
import
{
File
}
from
'
./file
'
;
...
...
src/app/file.ts
View file @
98d17d44
/*
*
\file
*
Interface for File having attributes for storing the extensions and contents of the file.
*
Used in services and components for storing the ide text and uploading the server, as well as
*
compiling and executing programs.
/*
!
\file
Interface for File having attributes for storing the extensions and contents of the file.
Used in services and components for storing the ide text and uploading the server, as well as
compiling and executing programs.
*/
export
interface
File
{
...
...
src/app/problem.ts
View file @
98d17d44
/*
*
\file
*
A temporary Interface for Problem
/*
!
\file
A temporary Interface for Problem
*/
export
interface
Problem
{
...
...
src/app/question.ts
View file @
98d17d44
/*
*
\file
*
Interface for Question which are to be uploaded by different users.
/*
!
\file
Interface for Question which are to be uploaded by different users.
*/
export
interface
Question
{
...
...
src/app/user.ts
View file @
98d17d44
/*
*
\file
*
Interface for User containing his/her details and login credentials.
*
Used in services and components as a data structure for each user.
/*
!
\file
Interface for User containing his/her details and login credentials.
Used in services and components as a data structure for each user.
*/
export
interface
User
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment