UNPKG

@archon-inc/sdk

Version:

Integrate easily to our government platform using this SDK. More info on https://archon.inc/sdk

10 lines (9 loc) 256 B
import { EventType } from "../types/logging.js"; /** * Create a new event type for logging. * @param name The name of the event type. * @returns The event type. */ export default function createEventType(name: string) { return name as EventType; }