Bare-bones RS client

This commit is contained in:
2020-09-08 16:50:01 +02:00
parent 00156c8d70
commit a48d74608f
9 changed files with 178 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
import Controller from '@ember/controller';
import { inject as service } from '@ember/service';
import Storage from 'dashtab/services/storage';
export default class Application extends Controller.extend({
// anything which *must* be merged to prototype here
}) {
@service storage!: Storage;
}
// DO NOT DELETE: this is how TypeScript knows how to look up your controllers.
declare module '@ember/controller' {
interface Registry {
'application': Application;
}
}