mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-20 09:12:36 +08:00
13 lines
385 B
TypeScript
13 lines
385 B
TypeScript
import { AIItem } from './ai-item';
|
|
import { AIItemList } from './ai-item-list';
|
|
import { AISubItemList } from './ai-sub-item-list';
|
|
|
|
export * from './ai-item-list.js';
|
|
export * from './types.js';
|
|
|
|
export function effects() {
|
|
customElements.define('ai-item-list', AIItemList);
|
|
customElements.define('ai-item', AIItem);
|
|
customElements.define('ai-sub-item-list', AISubItemList);
|
|
}
|