types-nora-api 0.0.87 → 0.0.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/classes.d.ts +4 -0
- package/dist/classes.js +4 -0
- package/package.json +1 -1
package/dist/classes.d.ts
CHANGED
|
@@ -612,6 +612,10 @@ declare const PAGINAS: {
|
|
|
612
612
|
readonly id: "SESSAO";
|
|
613
613
|
readonly nome: "Assistindo Sessão";
|
|
614
614
|
};
|
|
615
|
+
readonly MESTRE: {
|
|
616
|
+
readonly id: "MESTRE";
|
|
617
|
+
readonly nome: "Página de Mestre";
|
|
618
|
+
};
|
|
615
619
|
};
|
|
616
620
|
type PaginaChave = keyof typeof PAGINAS;
|
|
617
621
|
type PaginaObjeto = typeof PAGINAS[PaginaChave];
|
package/dist/classes.js
CHANGED