aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2019-05-01 12:16:42 +0200
committerTeddy Wing2019-05-01 12:16:42 +0200
commitc63725c726f0f8acdaffb507ba89c30bfe898288 (patch)
tree512407889c3801ca3a5f3b8aa086c79bc29f0858
parent2cede3c33a48cda461306e7859dca975af05ad70 (diff)
downloadmuttagen-c63725c726f0f8acdaffb507ba89c30bfe898288.tar.bz2
Add constants for Gmail CSS classes
Create a type and names for these generated class names.
-rw-r--r--index.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/index.ts b/index.ts
new file mode 100644
index 0000000..1edc591
--- /dev/null
+++ b/index.ts
@@ -0,0 +1,5 @@
+type GmailCSSClass = string;
+
+const TOOLS_PANEL: GmailCSSClass = 'bAw';
+const SIDEBAR: GmailCSSClass = 'aeN';
+const MESSAGE_PAGER: GmailCSSClass = 'nH';