17 lines
425 B
TypeScript
Raw Normal View History

2019-08-31 20:51:14 -07:00
import Controller from '@ember/controller';
export default class Application extends Controller {
entity = {
urn: 'entityUrn',
formula: 'sum(job_apply_click)'
};
}
// DO NOT DELETE: this is how TypeScript knows how to look up your controllers.
declare module '@ember/controller' {
// eslint-disable-next-line @typescript-eslint/interface-name-prefix
interface Registry {
application: Application;
}
}