Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nahuelrosas/rick-and-morty-frontend
https://github.com/nahuelrosas/rick-and-morty-frontend
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nahuelrosas/rick-and-morty-frontend
- Owner: nahuelRosas
- Created: 2024-01-05T14:52:07.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-04-03T18:23:54.000Z (9 months ago)
- Last Synced: 2024-04-22T15:03:27.154Z (8 months ago)
- Language: TypeScript
- Homepage: https://rick-and-morty-nr.vercel.app/
- Size: 269 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.html
Awesome Lists containing this project
README
- Interfaces
-
Interface: Character - rick-and-morty-front-end
-
Table of contents - Modules
-
Module: App - Module: main
-
Module: types - Module: vite-env
rick-and-morty-front-end / Modules
Interfaces
rick-and-morty-front-end / Modules / types / Character
Interface: Character
types.Character
Represents a character in the Rick and Morty universe.
Table of contents
Properties
Properties
gender
• gender: gender
Defined in
name
• name: string
Defined in
species
• species: species
Defined in
status
• status: status
Defined in
type
• type: string
Defined in
rick-and-morty-front-end / Modules
rick-and-morty-front-end
Table of contents
Modules
Modules
rick-and-morty-front-end / Modules / App
Module: App
Table of contents
Functions
Functions
default
▸ default(): Element
Renders the main application component.
Returns
Element
The JSX element representing the App component.
Defined in
rick-and-morty-front-end / Modules / main
Module: main
rick-and-morty-front-end / Modules / types
Module: types
Table of contents
Interfaces
Type Aliases
Type Aliases
gender
Ƭ gender: "Male"
| "Female"
| "Genderless"
| "Unknown"
| ""
Represents the gender of a character.
Possible values are 'Male', 'Female', 'Genderless', 'Unknown', or an empty string.
Defined in
species
Ƭ species: "Human"
| "Alien"
| "Humanoid"
| "Unknown"
| "Mythological Creature"
| "Poopybutthole"
| "Animal"
| "Robot"
| "Cronenberg"
| "Disease"
| ""
Represents the species of a character in the Rick and Morty universe.
Defined in
status
Ƭ status: "Alive"
| "Dead"
| "Unknown"
| ""
Represents the status of a character.
Possible values are 'Alive', 'Dead', 'Unknown', or an empty string.
Defined in
rick-and-morty-front-end / Modules / vite-env