mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2025-02-08 06:32:36 +01:00
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
|
import { NitroEvent } from '../events/NitroEvent';
|
||
|
|
||
|
export class ConfigurationEvent extends NitroEvent
|
||
|
{
|
||
|
public static LOADED: string = 'NCE_LOADED';
|
||
|
public static FAILED: string = 'NCE_FAILED';
|
||
|
|
||
|
constructor(type: string)
|
||
|
{
|
||
|
super(type);
|
||
|
}
|
||
|
}
|