UNPKG

@kuriousdesign/machine-sdk

Version:

Shared data types and helpers for machine-related repositories

17 lines (16 loc) 290 B
export interface NewValue { nodeId: string; value: any; } export interface UserInput { nodeId: string; nodeDataType: any; value: any; } export interface LoginInput { username: string; password: string; } export interface RecipeDeleteInput { index: number; }