Updated Types

This commit is contained in:
Marcel Lorbeer 2023-07-25 02:02:21 +02:00
parent f567caca04
commit fe4c648b07
7 changed files with 30 additions and 3 deletions

View File

@ -0,0 +1,5 @@
return {
InvalidAccessToken = function(message: string):string
return ("[MarcSync Exception] InvalidAccessToken: %s"):format(message)
end
}

View File

@ -0,0 +1,8 @@
return {
CollectionNotFound = function(message: string):string
return ("[MarcSync Exception] CollectionNotFound: %s"):format(message)
end,
CollectionAlreadyExists = function(message: string):string
return ("[MarcSync Exception] CollectionAlreadyExists: %s"):format(message)
end
}

View File

@ -0,0 +1,8 @@
return {
InvalidEntryData = function(message: string):string
return ("[MarcSync Exception] InvalidEntryData: %s"):format(message)
end,
EntryNotFound = function(message: string):string
return ("[MarcSync Exception] EntryNotFound: %s"):format(message)
end
}

View File

@ -0,0 +1,9 @@
type EntryData = {
[string]: any
}
return {
getType = function(): EntryData
return {}
end,
}

View File

@ -1 +0,0 @@
return require(script.Parent.Parent.Parent.Objects.Collection)

View File

@ -1 +0,0 @@
return require(script.Parent.Parent.Parent.Objects.Entry)

View File

@ -1 +0,0 @@
return require(script.Parent.Parent)