mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-27 18:00:51 +01:00
15 lines
195 B
TypeScript
15 lines
195 B
TypeScript
export class NitroEvent
|
|
{
|
|
private _type: string;
|
|
|
|
constructor(type: string)
|
|
{
|
|
this._type = type;
|
|
}
|
|
|
|
public get type(): string
|
|
{
|
|
return this._type;
|
|
}
|
|
}
|