nitro-renderer/src/core/events/NitroEvent.ts

15 lines
195 B
TypeScript
Raw Normal View History

2021-07-17 09:24:40 +02:00
export class NitroEvent
2021-03-17 03:02:09 +01:00
{
2021-07-17 09:24:40 +02:00
private _type: string;
constructor(type: string)
{
this._type = type;
}
public get type(): string
{
return this._type;
}
}