UNPKG

@kuriousdesign/machine-sdk

Version:

Shared data types and helpers for machine-related repositories

20 lines (16 loc) 275 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, }