UNPKG

@deployport/specular-runtime

Version:

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

10 lines (9 loc) 341 B
import Package from "./package.js"; import UserDefinedType from "./userDefinedType.js"; export default class Enum implements UserDefinedType { readonly name: string; readonly package: Package; readonly constants: string[]; readonly defaultConstant: string; constructor(pkg: Package, name: string, constants: string[]); }