This commit is contained in:
2024-04-25 19:56:42 +08:00
commit 45804d45f6
5 changed files with 313 additions and 0 deletions

12
index.ts Normal file
View File

@@ -0,0 +1,12 @@
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'