2
0
mirror of https://github.com/esiur/esiur-js.git synced 2026-04-04 14:08:20 +00:00

Generator

This commit is contained in:
2022-09-03 03:08:57 +03:00
parent f08df2c3fa
commit 93ed4edcbd
26 changed files with 1377 additions and 238 deletions

View File

@@ -29,6 +29,7 @@
import AsyncBag from '../Core/AsyncBag.js';
import AsyncReply from '../Core/AsyncReply.js';
import IDestructible from '../Core/IDestructible.js';
import { TemplateDescriber } from './Template/TemplateDescriber.js';
export const ResourceTrigger =
{
@@ -59,11 +60,6 @@ export default class IResource extends IDestructible
static get template()
{
return {
namespace: "Esiur",
properties: [],
functions: [],
events: []
}
return new TemplateDescriber("Esiur", []);
}
}