diff options
| author | Teddy Wing | 2019-05-01 15:49:26 +0200 |
|---|---|---|
| committer | Teddy Wing | 2019-05-01 15:49:26 +0200 |
| commit | a17a9e2b3d890711f5f5f86c04cfef1a5c64a2aa (patch) | |
| tree | e0a76fb7995b389cc2ba6b40b81e1eba3b49f57e /src/sidebar.ts | |
| parent | 33f83a17badb4586c0eb0e3b78aef9c8debe371f (diff) | |
| download | muttagen-a17a9e2b3d890711f5f5f86c04cfef1a5c64a2aa.tar.bz2 | |
Move Gmail CSS class definitions to a new module
Allow them to be used for a new Sidebar module that will enable sidebar
toggling.
Had to switch the compiled module system to `amd` because of this error
message:
tsconfig.json:3:3 - error TS6082: Only 'amd' and 'system' modules
are supported alongside --outFile.
Thinking I'm going to switch to Typescript namespaces to save myself the
trouble of using a 'require' library for the AMD modules.
Diffstat (limited to 'src/sidebar.ts')
| -rw-r--r-- | src/sidebar.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sidebar.ts b/src/sidebar.ts new file mode 100644 index 0000000..6e20980 --- /dev/null +++ b/src/sidebar.ts @@ -0,0 +1 @@ +import SIDEBAR from './gmail_css_class.ts'; |
