@openhps/core
Version:
Open Hybrid Positioning System - Core component
20 lines (18 loc) • 384 B
text/typescript
export interface SerializedWorkerMethod {
name: string;
handlerFn: string;
}
export interface WorkerData {
services?: Array<{
uid: string;
dataType?: string;
}>;
builder?: string;
serialized?: any;
shape?: string;
imports?: string[];
directory?: string;
args?: any;
type?: string;
methods?: SerializedWorkerMethod[];
}