mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
c28b65a3f2
* 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.
13 lines
306 B
TypeScript
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;
|
|
}
|
|
}
|