nitro-renderer/src/core/events/NitroEvent.ts
2021-07-17 03:24:40 -04:00

15 lines
195 B
TypeScript

export class NitroEvent
{
private _type: string;
constructor(type: string)
{
this._type = type;
}
public get type(): string
{
return this._type;
}
}