All checks were successful
Test / build (push) Successful in 8s
- Add the limit option - Valid number between 1 and 100 - Defaults to 100 - Updated documentation to mention this #137 Reviewed-on: #203 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
6 lines
No EOL
395 B
TypeScript
6 lines
No EOL
395 B
TypeScript
export default class ErrorMessages {
|
|
public static readonly FailedToFetchReddit = "Failed to fetch result from Reddit";
|
|
public static readonly UnableToParseJSON = "Unable to parse the JSON result";
|
|
public static readonly NoImageResultsFound = "No image results found in response from Reddit";
|
|
public static readonly LimitOutOfRange = "Limit must be a number between 1 and 100";
|
|
} |