layout/index.ts
2024-04-25 19:56:42 +08:00

12 lines
278 B
TypeScript

import 'elexis';
import { $Layout } from './lib/$Layout';
declare module 'elexis' {
export namespace $ {
export interface TagNameElementMap {
'layout': typeof $Layout;
}
}
}
$.registerTagName('layout', $Layout)
export * from './lib/$Layout'