nitro-react/src/events/catalog/CatalogEvent.ts

12 lines
465 B
TypeScript
Raw Normal View History

2021-04-22 05:26:30 +02:00
import { NitroEvent } from 'nitro-renderer';
export class CatalogEvent extends NitroEvent
{
2021-05-10 19:11:16 +02:00
public static SHOW_CATALOG: string = 'CE_SHOW_CATALOG';
public static HIDE_CATALOG: string = 'CE_HIDE_CATALOG';
public static TOGGLE_CATALOG: string = 'CE_TOGGLE_CATALOG';
public static PURCHASE_SUCCESS: string = 'CE_PURCHASE_SUCCESS';
public static PURCHASE_FAILED: string = 'CE_PURCHASE_FAILED';
public static SOLD_OUT: string = 'CE_SOLD_OUT';
2021-04-22 05:26:30 +02:00
}