// Easily allow apps, which are not yet using strict mode templates, to consume your Glint types, by importing this file. // Add all your components, helpers and modifiers to the template registry here, so apps don't have to do this. // See https://typed-ember.gitbook.io/glint/environments/ember/authoring-addons import type { FocusTrapModifierSignature } from './modifiers/focus-trap.ts'; import type { ModifierLike } from '@glint/template'; // Uncomment this once entries have been added! 👇 export default interface Registry { 'focus-trap': ModifierLike; }