UNPKG

@deployport/specular-runtime

Version:

Runtime for Specular API clients with support for Node.js and Browser

12 lines (11 loc) 225 B
/** * HydrateContext is used to hydrate a struct from a content */ export class HydrateContext { content; package; constructor(content, pkg) { this.content = content; this.package = pkg; } }