Files
smartchat/ts_web/plugins.ts
T

11 lines
430 B
TypeScript
Raw Permalink Normal View History

// Lit
import { LitElement, html, css } from 'lit';
export { LitElement, html, css };
export type { TemplateResult, CSSResult } from 'lit';
// Core (cross-folder import)
import { ChatSession } from '../ts/smartchat.classes.chatsession.js';
export { ChatSession };
export type { IChatSessionOptions, IChatCallbacks, IChatUsage } from '../ts/smartchat.interfaces.js';
export type { IAgentRunResult } from '@push.rocks/smartagent';