Bare-bones RS client
This commit is contained in:
16
app/controllers/application.ts
Normal file
16
app/controllers/application.ts
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user