Project 'hyper/core' was moved to 'hyper/upm/core'. Please update any links and bookmarks that may still have the old path.
Select Git revision
Hyper.Core.Editor.asmdef.meta
parameter.ts 223 B
import {TypeRef} from './type-ref';
export class Parameter {
type: TypeRef;
name: string;
static fromJson(json: any): Parameter {
return {
type: TypeRef.fromJson(json.t),
name: json.n,
};
}
}