diff options
| author | Teddy Wing | 2019-05-01 12:16:42 +0200 |
|---|---|---|
| committer | Teddy Wing | 2019-05-01 12:16:42 +0200 |
| commit | c63725c726f0f8acdaffb507ba89c30bfe898288 (patch) | |
| tree | 512407889c3801ca3a5f3b8aa086c79bc29f0858 | |
| parent | 2cede3c33a48cda461306e7859dca975af05ad70 (diff) | |
| download | muttagen-c63725c726f0f8acdaffb507ba89c30bfe898288.tar.bz2 | |
Add constants for Gmail CSS classes
Create a type and names for these generated class names.
| -rw-r--r-- | index.ts | 5 |
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'; |
