1
0
mirror of https://github.com/EGroupware/egroupware.git synced 2025-03-21 03:27:39 +01:00
egroupware/api/js/etemplate/Et2Select/Select/Et2SelectAccess.ts
2024-02-14 15:27:28 -07:00

15 lines
332 B
TypeScript

import {Et2Select} from "../Et2Select";
import {Et2StaticSelectMixin, StaticOptions} from "../StaticOptions";
export class Et2SelectAccess extends Et2StaticSelectMixin(Et2Select)
{
constructor()
{
super();
this._static_options = StaticOptions.access(this);
}
}
customElements.define("et2-select-access", Et2SelectAccess);