mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-27 03:19:51 +00:00
17 lines
425 B
TypeScript
17 lines
425 B
TypeScript
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;
|
|
}
|
|
}
|