Files
authentik/web/src/stories/interface.ts
T
Teffen Ellis c28b65a3f2 Web: Controllers cleanup (#14616)
* web: Fix issues surrounding availability of controllers during init.

web: Fix edgecase where flow does not have brand.

* web: Fix import path.

* web: Clean up mixin/controller paths.

* web: Prepare for consistent import styling.

- Prep for Storybook fixes.

* web: Update MDX types.

* web: Fix issues surrounding async imports, MDX typing, relative paths.

* web: Format. Clarify.

* web: Group module types.
2025-05-26 07:06:14 -04:00

13 lines
306 B
TypeScript

import { Interface } from "#elements/Interface";
import { customElement } from "lit/decorators.js";
@customElement("ak-storybook-interface")
export class StoryInterface extends Interface {}
declare global {
interface HTMLElementTagNameMap {
"ak-storybook-interface": StoryInterface;
}
}