/**
 * @example
 * ```ts
 * import { start } from "https://deno.land/x/stc@$X_VERSION/mod.ts";
 * // 导入解析方法
 * import { parserDefinition } from "npm:@lonu/stc/plugin/definition";
 * import { parserActions } from 'npm:@lonu/stc/plugin/action'
 *
 * const myPlugin: IPlugin = {
 *  name: "stc:MyPlugin",
 *  setup(context) {
 *  console.log(context);
 *    // 类型映射
 *    return {};
 *  },
 *  onTransform(def, action) {
 *    // 转换 definition
 *    const defContent: string = parserDefinition(def)
 *    // 转换 action
 *    const actionContent: Map<string, string> = parserAction(action)
 *    // 返回转换后的内容
 *    return {
 *      definition: defContent,
 *      action: actionContent
 *    }
 *  }
 * }
 *
 * start({
 *  // ...其他配置
 *  plugins: [myPlugin]
 * })
 * ```
 *
 * @module
 */
import "./_dnt.polyfills.js";
export { start } from "./src/app.js";
//# sourceMappingURL=mod.d.ts.map