Skip to content
Snippets Groups Projects
Verified Commit e15c34bb authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

docs: more docstrings

parent 6171fd99
No related branches found
No related tags found
No related merge requests found
Pipeline #1492 passed
......@@ -164,8 +164,19 @@ export interface Emulator extends ObservableI {
*/
get framerate(): number;
/**
* A dictionary that contains the register names associated
* with their value either as strings or numbers.
*/
get registers(): Record<string, string | number>;
/**
* Obtains the pixel buffer for the VRAM tile at the given
* index.
*
* @param index The index of the tile to obtain pixel buffer.
* @returns The pixel buffer of the tile at the given index.
*/
getTile(index: number): Uint8Array;
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment