ember-source
Version:
A JavaScript framework for creating ambitious web applications
12 lines (9 loc) • 375 B
TypeScript
// This module provides an 'extension' to the `@ember/owner` module from the
// `@ember/routing/location` module. Our type publishing infrastructure will
// pass it through unchanged, so end users will get this extension.
import type { Registry } from '@ember/routing/location';
declare module '@ember/owner' {
export interface DIRegistry {
location: Registry;
}
}