UNPKG

@altostra/core

Version:

Core library for shared types and logic

7 lines (6 loc) 282 B
import type { ConnectionBase } from "../Common"; export declare type TriggerType = 'connection.trigger'; export interface Trigger extends ConnectionBase { type: TriggerType; } export declare const isTrigger: import("@altostra/type-validations").ObjectOfTypeValidation<Trigger>;